diff options
| author | David Hill <[email protected]> | 2025-12-11 19:34:34 +0000 |
|---|---|---|
| committer | David Hill <[email protected]> | 2025-12-11 19:34:34 +0000 |
| commit | afcd547a16ab3c8cf9f4ab72995a8bcd08980c11 (patch) | |
| tree | dd763d766107684c460080aaac1d933e4977cb46 /.github | |
| parent | 521fbb93cd41e60b1afcbba2ce4d940543c10a51 (diff) | |
| parent | 9d73096db0ea2eb9e11c48b287855574651f33af (diff) | |
| download | opencode-afcd547a16ab3c8cf9f4ab72995a8bcd08980c11.tar.gz opencode-afcd547a16ab3c8cf9f4ab72995a8bcd08980c11.zip | |
Merge branch 'dev' of https://github.com/sst/opencode into dev
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb6bd972e..1e5f56ba6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -85,7 +85,6 @@ jobs: publish-tauri: needs: publish - if: inputs.bump || inputs.version continue-on-error: true strategy: fail-fast: false @@ -130,7 +129,7 @@ jobs: - uses: ./.github/actions/setup-bun - name: install dependencies (ubuntu only) - if: startsWith(matrix.settings.host, 'ubuntu') + if: contains(matrix.settings.host, 'ubuntu') run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf @@ -162,7 +161,7 @@ jobs: # Fixes AppImage build issues, can be removed when https://github.com/tauri-apps/tauri/pull/12491 is released - run: cargo install tauri-cli --git https://github.com/tauri-apps/tauri --branch feat/truly-portable-appimage - if: startsWith(matrix.settings.host, 'ubuntu') + if: contains(matrix.settings.host, 'ubuntu') - name: Build and upload artifacts uses: tauri-apps/tauri-action@390cbe447412ced1303d35abe75287949e43437a @@ -180,7 +179,7 @@ jobs: with: projectPath: packages/tauri uploadWorkflowArtifacts: true - tauriScript: ${{ (startsWith(matrix.settings.host, 'ubuntu') && 'cargo tauri') || '' }} + tauriScript: ${{ (contains(matrix.settings.host, 'ubuntu') && 'cargo tauri') || '' }} args: --target ${{ matrix.settings.target }} updaterJsonPreferNsis: true releaseId: ${{ needs.publish.outputs.releaseId }} |
