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 7430785 + 7893ece commit d2d9dba
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,11 @@ jobs:
- name: 'Define Image name'
run: |
image_name=${{ github.repository }}
image_name=$(echo "$image_name" | cut -f2 -d"/")
image_name=$(echo "$image_name" | cut -f2 -d"/" | tr '[:upper:]' '[:lower:]')
echo "image_name=$image_name" >> "$GITHUB_ENV"
- name: 'Build image'
run: docker build . --file Dockerfile --tag ${{ env.image_name }} --label "runnumber=${GITHUB_RUN_ID}"
run: |
docker build . --file Dockerfile --tag ${{ env.image_name }} --label "runnumber=${GITHUB_RUN_ID}"
- name: 'Log in to registry'
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

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

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

## [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)
Expand Down

0 comments on commit d2d9dba

Please sign in to comment.