Skip to content

Commit

Permalink
fix custom tag prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Pelletier committed Feb 1, 2024
1 parent 53dc273 commit eebf3c0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/webhook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,16 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
context: ${{ env.WORKING_DIR }}
push: true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version-selector.outputs.VERSION }}
# - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
# with:
# context: ${{ env.WORKING_DIR }}
# push: true
# tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version-selector.outputs.VERSION }}

- uses: mathieudutour/github-tag-action@v6.1
id: tag_version
with:
custom_tag: ${{ env.GIT_TAG_PREFIX }}:${{ steps.version-selector.outputs.VERSION }}
custom_tag: ${{ env.GIT_TAG_PREFIX }}${{ steps.version-selector.outputs.VERSION }}
github_token: ${{ secrets.GITHUB_TOKEN }}

- uses: ncipollo/release-action@v1
Expand Down

0 comments on commit eebf3c0

Please sign in to comment.