Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Ferrand committed Oct 27, 2023
1 parent 521f662 commit 6828e48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
main:
uses: ./.github/workflows/main.yml
docker:
needs: main
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -25,6 +26,7 @@ jobs:
echo "Docker tag is: ${VERSION}"
docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --tag adferrand/backuppc:${VERSION} --tag adferrand/backuppc:4 --tag adferrand/backuppc --push .
github:
needs: docker
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand All @@ -36,7 +38,7 @@ jobs:
- name: Get version and changelog
id: get-version
run: |
VERSION="${cat VERSION}"
VERSION="$(cat VERSION)"
echo "Version is: ${VERSION}"
echo "VERSION=${VERSION}" >> "${GITHUB_OUTPUT}"
python utils/extract_changelog.py "${VERSION}" > extracted_changelog.md
Expand Down

0 comments on commit 6828e48

Please sign in to comment.