From a902dd9cb2900ebbfd65939449c9c92cb032054a Mon Sep 17 00:00:00 2001 From: Allen Byrne <50328838+byrnHDF@users.noreply.github.com> Date: Mon, 3 Jun 2024 09:48:22 -0500 Subject: [PATCH] release needs to be renamed with App (#270) --- .github/workflows/ant-app.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/ant-app.yml b/.github/workflows/ant-app.yml index 9356a273..db0f679f 100644 --- a/.github/workflows/ant-app.yml +++ b/.github/workflows/ant-app.yml @@ -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 @@ -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 @@ -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