We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b07663 commit fb88c2aCopy full SHA for fb88c2a
.github/workflows/release.yml
@@ -31,8 +31,8 @@ jobs:
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
with:
34
- tag_name: ${{ steps.get_version.outputs.VERSION }}
35
- release_name: Version ${{ steps.get_version.outputs.VERSION }}
+ tag_name: ${{ steps.get_tag.outputs.VERSION }}
+ release_name: Version ${{ steps.get_tag.outputs.VERSION }}
36
draft: false
37
prerelease: true # default to pre-release; manually set to release if OK after inspection
38
@@ -52,7 +52,7 @@ jobs:
52
- name: Check font version string ~= tag
53
run: |
54
echo '(placeholder for future check)'
55
- echo 'Tag: ${{ steps.get_version.outputs.VERSION }}'
+ echo 'Tag: ${{ steps.get_tag.outputs.VERSION }}'
56
57
- name: Upload OTF Asset
58
id: upload-otf-asset
0 commit comments