Skip to content

Commit b5fc591

Browse files
Merge pull request #33 from yambottle/main
Enable reusable CICD
2 parents 9bcb177 + e7fde40 commit b5fc591

File tree

3 files changed

+31
-150
lines changed

3 files changed

+31
-150
lines changed

.github/workflows/development.yaml

Lines changed: 0 additions & 147 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: u24_element_build_release_call
2+
on:
3+
pull_request:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
call_u24_elements_build_release_alpine:
9+
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_element_build_release.yaml@main
10+
with:
11+
py_ver: 3.9
12+
dist: alpine
13+
image: djbase
14+
call_u24_elements_build_release_debian:
15+
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_element_build_release.yaml@main
16+
with:
17+
py_ver: 3.9
18+
dist: debian
19+
image: djbase

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,30 @@
22

33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
44

5-
## 0.1.1 - 2022-06-10
5+
## [Unreleased]
6+
### Added
7+
+ Calling reusable CICD
8+
9+
## [0.1.1] - 2022-06-10
610
### Fixed
711
+ Replace lazy imports
812
+ Project path in the model.Model
913

10-
## 0.1.0 - 2022-05-10
14+
## [0.1.0] - 2022-05-10
1115
### Added
1216
+ Adopted black formatting into code base
1317
+ Table for RecordingInfo
1418
+ File ID for tracking updatable secondary key filepaths
1519
+ `make` functions for Computed/Imported tables
1620

17-
## 0.0.0a0 - 2021-11-15
21+
## [0.0.0a] - 2021-11-15
1822
### Added
1923
+ Drafts from a collection of precursor pipelines, including [DataJoint_Demo_DeepLabCut]
2024
(https://github.com/MMathisLab/DataJoint_Demo_DeepLabCut) graciously provided by the
2125
Mathis Lab.
2226
+ Support for 2d single-animal models
27+
28+
[Unreleased]: https://github.com/datajoint/element-deeplabcut/compare/v0.1.1...HEAD
29+
[0.1.1]: https://github.com/datajoint/element-deeplabcut/compare/v0.1.0...v0.1.1
30+
[0.1.0]: https://github.com/datajoint/element-deeplabcut/compare/v0.0.0a...v0.1.0
31+
[0.0.0a]: https://github.com/datajoint/element-deeplabcut/releases/tag/0.0.0a

0 commit comments

Comments
 (0)