Skip to content

Commit

Permalink
fix: create release off of tag
Browse files Browse the repository at this point in the history
  • Loading branch information
rickbassham committed Apr 12, 2022
1 parent 87c1b77 commit 33ac105
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 @@ -50,8 +50,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
tag_name: 'v${{ steps.semantic.outputs.new_release_version }}'
release_name: 'v${{ steps.semantic.outputs.new_release_version }}'
draft: true
body: ${{ steps.get_notes.outputs.NOTES }}
- name: Dispatch build-trigger
Expand All @@ -60,4 +60,4 @@ jobs:
with:
token: ${{ secrets.GH_TOKEN }}
event-type: build-trigger
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "release": { "id": "${{ steps.create_release.outputs.id }}", "html_url": "${{ steps.create_release.outputs.html_url }}", "upload_url": "${{ steps.create_release.outputs.upload_url }}" }}'
client-payload: '{"ref": "'v${{ steps.semantic.outputs.new_release_version }}'", "sha": "${{ github.sha }}", "release": { "id": "${{ steps.create_release.outputs.id }}", "html_url": "${{ steps.create_release.outputs.html_url }}", "upload_url": "${{ steps.create_release.outputs.upload_url }}" }}'

0 comments on commit 33ac105

Please sign in to comment.