Skip to content

Commit

Permalink
Merge branch 'main' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-gricourt committed Jan 28, 2022
2 parents 83c83b9 + ec48be0 commit 7430785
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
version_path: ${{ steps.update_version.outputs.version_path }}
version_dir: ${{ steps.update_version.outputs.version_dir }}
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -86,8 +87,10 @@ jobs:
TAG: ${{ needs.Tag.outputs.tag }}
run: |
VERSION_PATH=$(find . -name _version.py | head -n 1)
VERSION_DIR=$(dirname "$VERSION_PATH")
sed -i "2s/.*/__version__ = \"$TAG\"/" "$VERSION_PATH"
echo "::set-output name=version_path::${VERSION_PATH}"
echo "::set-output name=version_dir::${VERSION_DIR}"
- name: 'Upload Artifact Version'
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -119,14 +122,14 @@ jobs:
with:
persist-credentials: false
fetch-depth: 0
- name: 'Clean up version file'
run:
rm -f ${{ needs.Version.outputs.version_path }}
# - name: 'Clean up version file'
# run:
# rm -f ${{ needs.Version.outputs.version_path }}
- name: 'Download Artifact Version'
uses: actions/download-artifact@v2
with:
name: version-artifact
path: ${{ needs.Version.outputs.version_path }}
path: ${{ needs.Version.outputs.version_dir }}
- name: 'Download Artifact Changelog'
uses: actions/download-artifact@v2
with:
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.0.12](https://github.com/brsynth/rpFbaAnalysis/tree/0.0.12) (2022-01-28)

[Full Changelog](https://github.com/brsynth/rpFbaAnalysis/compare/0.0.11...0.0.12)

## [0.0.11](https://github.com/brsynth/rpFbaAnalysis/tree/0.0.11) (2022-01-28)

[Full Changelog](https://github.com/brsynth/rpFbaAnalysis/compare/0.0.10...0.0.11)

## [0.0.10](https://github.com/brsynth/rpFbaAnalysis/tree/0.0.10) (2022-01-28)

[Full Changelog](https://github.com/brsynth/rpFbaAnalysis/compare/0.0.9...0.0.10)

## [0.0.9](https://github.com/brsynth/rpFbaAnalysis/tree/0.0.9) (2022-01-28)

[Full Changelog](https://github.com/brsynth/rpFbaAnalysis/compare/0.0.8...0.0.9)

## [0.0.8](https://github.com/brsynth/rpFbaAnalysis/tree/0.0.8) (2022-01-24)

[Full Changelog](https://github.com/brsynth/rpFbaAnalysis/compare/0.0.7...0.0.8)
Expand Down

0 comments on commit 7430785

Please sign in to comment.