Skip to content

Commit

Permalink
Merge pull request #308 from gizmoguy/ref-name
Browse files Browse the repository at this point in the history
Use GITHUB_REF_NAME to get tag name.
  • Loading branch information
gizmoguy authored Nov 30, 2021
2 parents 5b5de4a + cbace43 commit 73572ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
export DEBEMAIL='[email protected]'
export DEBFULLNAME='Faucet Maintainers'
debchange --newversion ${{ github.event.release.tag_name }} -b "New upstream release"
debchange --newversion "${GITHUB_REF_NAME}" -b "New upstream release"
- name: Build package
run: |
mk-build-deps -i -r -t 'apt-get -f -y --force-yes'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Run buildx
run: |
docker buildx build \
--tag faucet/chewie:${{ github.event.release.tag_name }} \
--tag "faucet/chewie:${GITHUB_REF_NAME}" \
--tag faucet/chewie:latest \
--platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x \
--output "type=registry" \
Expand Down

0 comments on commit 73572ec

Please sign in to comment.