diff --git a/.github/workflows/tauri_app_build.yml b/.github/workflows/tauri_app_build.yml index 8944f36d..a0e0b52d 100644 --- a/.github/workflows/tauri_app_build.yml +++ b/.github/workflows/tauri_app_build.yml @@ -159,14 +159,16 @@ jobs: yarn tauri-build working-directory: vue - - run: mv vue/src-tauri/target/release/bundle/nsis/Infinite Image Browsing_${{ env.VERSION }}_x64-setup.exe vue/src-tauri/target/release/bundle/nsis/Infinite Image Browsing_${{ env.VERSION }}_x64-setup-pyinstaller.exe + - run: | + cd vue/src-tauri/target/release/bundle/nsis + mv "Infinite Image Browsing_${{ env.VERSION }}_x64-setup.exe" "Infinite Image Browsing_${{ env.VERSION }}_x64-setup-pyinstaller.exe" - name: Upload Artifacts uses: actions/upload-artifact@v3 with: name: bundle-${{ env.VERSION }}-${{ runner.os }} path: | - vue/src-tauri/target/release/bundle/nsis/Infinite Image Browsing_${{ env.VERSION }}_x64-setup.exe + vue/src-tauri/target/release/bundle/nsis/Infinite Image Browsing_${{ env.VERSION }}_x64-setup-pyinstaller.exe release: needs: [build, build-by-pyinstaller]