Skip to content

Commit

Permalink
fix variable references
Browse files Browse the repository at this point in the history
  • Loading branch information
jetersen committed Jan 16, 2022
1 parent f51c4af commit 5cb1244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- uses: release-drafter/release-drafter@master
with:
version: '{{ steps.version.outputs.version }}'
version: ${{ steps.version.outputs.version }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: force update major tag
run: |
git tag v{{ steps.version.outputs.major }} ${{ github.event.release.tag_name }} -f
git push origin refs/tags/v{{ steps.version.outputs.major }} -f
git tag v${{ steps.version.outputs.major }} ${{ github.event.release.tag_name }} -f
git push origin refs/tags/v${{ steps.version.outputs.major }} -f

0 comments on commit 5cb1244

Please sign in to comment.