diff options
Diffstat (limited to '.github/actions/meshmc/package/linux')
| -rw-r--r-- | .github/actions/meshmc/package/linux/action.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/actions/meshmc/package/linux/action.yml b/.github/actions/meshmc/package/linux/action.yml index 457ccb27ed..f6eb6f455e 100644 --- a/.github/actions/meshmc/package/linux/action.yml +++ b/.github/actions/meshmc/package/linux/action.yml @@ -65,8 +65,8 @@ runs: shell: bash env: VERSION: ${{ github.ref_type == 'tag' && github.ref_name || inputs.version }} - BUILD_DIR: build - INSTALL_APPIMAGE_DIR: install-appdir + BUILD_DIR: meshmc/build + INSTALL_APPIMAGE_DIR: meshmc/install-appdir GPG_PRIVATE_KEY: ${{ inputs.gpg-private-key }} run: | @@ -114,9 +114,9 @@ runs: - name: Package portable tarball shell: bash env: - BUILD_DIR: build + BUILD_DIR: meshmc/build - INSTALL_PORTABLE_DIR: install-portable + INSTALL_PORTABLE_DIR: meshmc/install-portable run: | cmake --install ${{ env.BUILD_DIR }} --config ${{ inputs.build-type }} --prefix ${{ env.INSTALL_PORTABLE_DIR }} cmake --install ${{ env.BUILD_DIR }} --config ${{ inputs.build-type }} --prefix ${{ env.INSTALL_PORTABLE_DIR }} --component portable @@ -138,16 +138,16 @@ runs: uses: actions/upload-artifact@v7 with: name: MeshMC-${{ inputs.artifact-name }}-Qt6-Portable-${{ inputs.version }}-${{ inputs.build-type }} - path: MeshMC-portable.tar.gz + path: meshmc/MeshMC-portable.tar.gz - name: Upload AppImage uses: actions/upload-artifact@v7 with: name: MeshMC-${{ runner.os }}-${{ inputs.version }}-${{ inputs.build-type }}-${{ env.APPIMAGE_ARCH }}.AppImage - path: MeshMC-${{ runner.os }}-*${{ env.APPIMAGE_ARCH }}.AppImage + path: meshmc/MeshMC-${{ runner.os }}-*${{ env.APPIMAGE_ARCH }}.AppImage - name: Upload AppImage Zsync uses: actions/upload-artifact@v7 with: name: MeshMC-${{ runner.os }}-${{ inputs.version }}-${{ inputs.build-type }}-${{ env.APPIMAGE_ARCH }}.AppImage.zsync - path: MeshMC-${{ runner.os }}-*${{ env.APPIMAGE_ARCH }}.AppImage.zsync + path: meshmc/MeshMC-${{ runner.os }}-*${{ env.APPIMAGE_ARCH }}.AppImage.zsync |
