Skip to content

Commit 66802d6

Browse files
Merge pull request #35 from yambottle/main
changelog fix type | add test release cicd
2 parents 6ee17ef + 31bfde5 commit 66802d6

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

.github/workflows/u24_element_build_release_call.yaml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,23 @@ on:
55
workflow_dispatch:
66

77
jobs:
8-
call_u24_elements_build_release_alpine:
8+
test_call_u24_elements_build_release_alpine:
9+
if: startsWith(github.ref, 'refs/tags') != true
910
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_element_build_release.yaml@main
1011
with:
1112
py_ver: 3.9
12-
dist: alpine
1313
image: djbase
14-
call_u24_elements_build_release_debian:
14+
secrets:
15+
TWINE_USERNAME: ${{secrets.TWINE_TEST_USERNAME}}
16+
TWINE_PASSWORD: ${{secrets.TWINE_TEST_PASSWORD}}
17+
call_u24_elements_build_release_alpine:
18+
if: |
19+
github.event_name == 'push' &&
20+
startsWith(github.ref, 'refs/tags')
1521
uses: dj-sciops/djsciops-cicd/.github/workflows/u24_element_build_release.yaml@main
1622
with:
1723
py_ver: 3.9
18-
dist: debian
19-
image: djbase
24+
image: djbase
25+
secrets:
26+
TWINE_USERNAME: ${{secrets.TWINE_USERNAME}}
27+
TWINE_PASSWORD: ${{secrets.TWINE_PASSWORD}}

CHANGELOG.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
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-
## [Unreleased]
6-
5+
## [0.1.1] - 2022-06-10
6+
### Fixed
7+
+ Replace lazy imports
8+
+ Project path in the model.Model
79
+ Add - Call reusable CICD
810
+ Update - Remove direct dependency (`element-interface`) for PyPI release.
911

10-
## [0.1.1] - 2022-06-10
11-
12-
+ Bugfix - Replace lazy imports
13-
+ Bugfix - Project path in the model.Model
14-
1512
## [0.1.0] - 2022-05-10
1613

1714
+ Add - Adopted black formatting into code base
@@ -24,7 +21,6 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
2421
+ Add - Drafts from a collection of precursor pipelines, including [DataJoint_Demo_DeepLabCut](https://github.com/MMathisLab/DataJoint_Demo_DeepLabCut) graciously provided by the Mathis Lab.
2522
+ Add - Support for 2d single-animal models
2623

27-
[Unreleased]: https://github.com/datajoint/element-deeplabcut/compare/v0.1.1...HEAD
28-
[0.1.1]: https://github.com/datajoint/element-deeplabcut/releases/tag/0.1.1
29-
[0.1.0]: https://github.com/datajoint/element-deeplabcut/releases/tag/0.1.0
24+
[0.1.1]: https://github.com/datajoint/element-deeplabcut/compare/0.1.0...0.1.1
25+
[0.1.0]: https://github.com/datajoint/element-deeplabcut/compare/0.0.0a...0.1.0
3026
[0.0.0a]: https://github.com/datajoint/element-deeplabcut/releases/tag/0.0.0a

0 commit comments

Comments
 (0)