Skip to content

Commit

Permalink
release needs to be renamed with App (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF authored Jun 3, 2024
1 parent a3d04c8 commit a902dd9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ant-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,14 @@ jobs:
mv ${{ inputs.snap_name }}-win64.zip ${{ steps.set-file-base.outputs.FILE_BASE }}App-win64.zip
shell: bash

- name: Rename snapshot binary-app base name
id: ren-basename
if: ${{ (inputs.use_environ == 'release') }}
run: |
cd build/dist
mv ${{ inputs.snap_name }}-win64.zip ${{ inputs.snap_name }}App-win64.zip
shell: bash

- name: List files for the space (Windows)
run: |
Get-ChildItem -Path ${{ github.workspace }}/build/dist
Expand Down Expand Up @@ -371,6 +379,14 @@ jobs:
mv ${{ inputs.snap_name }}-Linux-x86_64.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}App-Linux-x86_64.tar.gz
shell: bash

- name: Rename snapshot binary-app base name
id: ren-basename
if: ${{ (inputs.use_environ == 'release') }}
run: |
cd build/dist
mv ${{ inputs.snap_name }}-Linux-x86_64.tar.gz ${{ inputs.snap_name }}App-Linux-x86_64.tar.gz
shell: bash

- name: List files in the space (Linux)
run: |
ls ${{ github.workspace }}/build/dist
Expand Down Expand Up @@ -598,6 +614,14 @@ jobs:
mv ${{ inputs.snap_name }}-Darwin.tar.gz ${{ steps.set-file-base.outputs.FILE_BASE }}App-Darwin.tar.gz
shell: bash

- name: Rename snapshot binary-app base name
id: ren-basename
if: ${{ (inputs.use_environ == 'snapshots') }}
run: |
cd build/dist
mv ${{ inputs.snap_name }}-Darwin.tar.gz ${{ inputs.snap_name }}App-Darwin.tar.gz
shell: bash

- name: List files in the space (mac)
run: |
ls ${{ github.workspace }}/build/dist
Expand Down

0 comments on commit a902dd9

Please sign in to comment.