Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jul 29, 2023
1 parent faab758 commit df6e218
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ jobs:
- name: Get tag name for appimage release file name
if: contains(github.ref, 'refs/tags/v')
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
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
# 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 @@ -247,7 +248,8 @@ jobs:
- name: Get tag name for flatpak release file name
if: contains(github.ref, 'refs/tags/v')
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)
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
- name: Rename flatpak for release upload
if: contains(github.ref, 'refs/tags/v')
run: |
Expand Down

0 comments on commit df6e218

Please sign in to comment.