Skip to content

Commit deb4c4f

Browse files
Fix publish workflow
1 parent 72b502c commit deb4c4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ jobs:
6767
git push origin tag "$VERSION"
6868
env:
6969
GH_TOKEN: ${{ steps.app-token.outputs.token }}
70-
VERSION: ${{ steps.get-version.version }}
70+
VERSION: ${{ steps.get-version.outputs.version }}
7171
- name: Create GitHub release
7272
# language=bash
7373
run: |
7474
gh release create "$VERSION" --verify-tag --latest \
7575
--title "$VERSION"
7676
env:
7777
GH_TOKEN: ${{ steps.app-token.outputs.token }}
78-
VERSION: ${{ steps.get-version.version }}
78+
VERSION: ${{ steps.get-version.outputs.version }}

0 commit comments

Comments
 (0)