Skip to content

Commit

Permalink
Correct binary names for appimage files (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored May 30, 2024
1 parent bd82c83 commit 4698f0a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ant-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: zip-win-vs2022-app-binary
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}-win64.zip
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}App-win64.zip
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'snapshots') }}

Expand All @@ -224,7 +224,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: zip-win-vs2022-app-binary
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}-win64.zip
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}App-win64.zip
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'release') }}

Expand Down Expand Up @@ -377,15 +377,15 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204-app-binary
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}-Linux-x86_64.tar.gz
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}App-Linux-x86_64.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'snapshots') }}

- name: Save published release-app binary (Linux)
uses: actions/upload-artifact@v4
with:
name: tgz-ubuntu-2204-app-binary
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}-Linux-x86_64.tar.gz
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}App-Linux-x86_64.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'release') }}

Expand Down Expand Up @@ -604,7 +604,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: tgz-osx-app-binary
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}-Darwin.tar.gz
path: ${{ github.workspace }}/build/dist/${{ steps.set-file-base.outputs.FILE_BASE }}App-Darwin.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'snapshots') }}

Expand All @@ -613,7 +613,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: tgz-osx-app-binary
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}-Darwin.tar.gz
path: ${{ github.workspace }}/build/dist/${{ inputs.snap_name }}App-Darwin.tar.gz
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`
if: ${{ (inputs.use_environ == 'release') }}

Expand Down

0 comments on commit 4698f0a

Please sign in to comment.