Skip to content

Commit

Permalink
try fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
caioricciuti committed May 25, 2024
1 parent 1a7f288 commit 66f01ff
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 @@ -60,11 +60,13 @@ jobs:
fi
- name: Create new tag
env:
GITHUB_TOKEN: ${{ secrets.GHCR_PAT }}
run: |
set -e # Fail on first error
git tag "${{ env.new_tag }}"
git push origin "${{ env.new_tag }}"
git push https://x-access-token:${{ secrets.GHCR_PAT }}@github.com/${{ github.repository }} "${{ env.new_tag }}"
- name: Create GitHub release
uses: actions/create-release@v1
Expand Down

0 comments on commit 66f01ff

Please sign in to comment.