diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1856f914e..2a83baea1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -238,12 +238,8 @@ jobs: shell: cmd - name: Build the app (debug) - uses: tauri-apps/tauri-action@v0 if: ${{ env.BUILD_RELEASE == 'false' }} - with: - includeRelease: false - includeDebug: true - args: "${{ env.TAURI_ARGS_MACOS }} ${{ env.TAURI_ARGS_UBUNTU }}" + run: "yarn tauri build --debug ${{ env.TAURI_ARGS_MACOS }} ${{ env.TAURI_ARGS_UBUNTU }}" - name: Build for Mac TestFlight (nightly) if: ${{ github.event_name == 'schedule' && matrix.os == 'macos-14' }} @@ -336,7 +332,6 @@ jobs: # specific and we want to overwrite it with the this new build after and # not upload the apple store build to the public bucket - name: Build the app (release) and sign - uses: tauri-apps/tauri-action@v0 if: ${{ env.BUILD_RELEASE == 'true' }} env: TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }} @@ -348,8 +343,7 @@ jobs: APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }} TAURI_CONF_ARGS: "--config ${{ matrix.os == 'windows-latest' && 'src-tauri\\tauri.release.conf.json' || 'src-tauri/tauri.release.conf.json' }}" - with: - args: "${{ env.TAURI_CONF_ARGS }} ${{ env.TAURI_ARGS_MACOS }} ${{ env.TAURI_ARGS_UBUNTU }}" + run: "yarn tauri build ${{ env.TAURI_CONF_ARGS }} ${{ env.TAURI_ARGS_MACOS }} ${{ env.TAURI_ARGS_UBUNTU }}" - uses: actions/upload-artifact@v3 if: matrix.os != 'ubuntu-latest'