Skip to content

Commit

Permalink
Fix release name and tag
Browse files Browse the repository at this point in the history
The version extracted from the artifact misses the "v" prefix.
  • Loading branch information
komuta committed Sep 21, 2020
1 parent 983ea16 commit cb620e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.identify_artifact.outputs.version }}
release_name: ${{ steps.identify_artifact.outputs.version }}
tag_name: "v${{ steps.identify_artifact.outputs.version }}"
release_name: "v${{ steps.identify_artifact.outputs.version }}"
draft: false
prerelease: false
- name: Upload Release Asset
Expand Down

0 comments on commit cb620e6

Please sign in to comment.