From 0ad1a9e43f8df4964bfd51e3928309d5eca30a52 Mon Sep 17 00:00:00 2001 From: yougotwill Date: Wed, 19 Feb 2025 14:52:32 +1100 Subject: [PATCH] fix: remove bad quote on move all files step simplified move specific files step --- actions/upload_prod_artefacts/action.yml | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/actions/upload_prod_artefacts/action.yml b/actions/upload_prod_artefacts/action.yml index b42af3ead..53d2b53c7 100644 --- a/actions/upload_prod_artefacts/action.yml +++ b/actions/upload_prod_artefacts/action.yml @@ -19,28 +19,28 @@ runs: working-directory: ./release/ - name: Make artefacts folder - run: mkdir -p ${{ inputs.upload_prefix }}-production + run: mkdir -p production-${{ inputs.upload_prefix }} shell: bash working-directory: ./release/ - name: Move all files if: ${{ inputs.multiarch_build == 'false' }} run: | - ls -f -- | xargs -I{} mv {} ${{ inputs.upload_prefix }}-production/" + ls -f -- | xargs -I{} mv {} production-${{ inputs.upload_prefix }}/ shell: bash working-directory: ./release/ - name: Move ${{ inputs.upload_prefix }} files if: ${{ inputs.multiarch_build == 'true' }} run: | - mv *${{ inputs.upload_prefix }}* ${{ inputs.upload_prefix }}-production/ - mv builder-debug.yml ${{ inputs.upload_prefix }}-production/ - mv *latest*.yml ${{ inputs.upload_prefix }}-production/ + mv *${{inputs.upload_prefix}}* production-${{ inputs.upload_prefix }}/ + mv *latest*.yml production-${{ inputs.upload_prefix }}/ + mv builder-debug.yml production-${{ inputs.upload_prefix }}/ shell: bash working-directory: ./release/ - name: Artefact files - run: ls ${{ inputs.upload_prefix }}-production/ + run: ls production-${{ inputs.upload_prefix }}/ shell: bash working-directory: ./release/ @@ -48,4 +48,4 @@ runs: uses: actions/upload-artifact@v4 with: name: ${{ inputs.upload_prefix }}-production - path: release/${{ inputs.upload_prefix }}-production/ + path: release/production-${{ inputs.upload_prefix }}/ diff --git a/package.json b/package.json index 82b0bf115..b3999548a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "session-desktop", "productName": "Session", "description": "Private messaging from your desktop", - "version": "1.14.6-alpha", + "version": "1.14.6-alpha.0", "license": "GPL-3.0", "author": { "name": "Session Foundation",