Skip to content

Commit

Permalink
fix typo in yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jul 29, 2023
1 parent df6e218 commit 36bb7a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
if: contains(github.ref, 'refs/tags/v')
id: get_version
run: echo ::set-output name=VERSION2::$(echo $GITHUB_REF | cut -d / -f 3)
run: run: echo "{VERSION}={$(echo $GITHUB_REF | cut -d / -f 3)}" >> $GITHUB_OUTPUT
run: echo "{VERSION}={$(echo $GITHUB_REF | cut -d / -f 3)}" >> $GITHUB_OUTPUT
# The zync file names MUST match the pattern "qTox-*.x86_64.AppImage.zsync"
# indefinitely for older versions to be able to update https://github.com/AppImage/AppImageSpec/blob/master/draft.md#github-releases
- name: Rename appimage for release upload
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
if: contains(github.ref, 'refs/tags/v')
id: get_version
run: echo ::set-output name=VERSION2::$(echo $GITHUB_REF | cut -d / -f 3)
run: run: echo "{VERSION}={$(echo $GITHUB_REF | cut -d / -f 3)}" >> $GITHUB_OUTPUT
run: echo "{VERSION}={$(echo $GITHUB_REF | cut -d / -f 3)}" >> $GITHUB_OUTPUT
- name: Rename flatpak for release upload
if: contains(github.ref, 'refs/tags/v')
run: |
Expand Down

0 comments on commit 36bb7a0

Please sign in to comment.