diff options
| author | Dax Raad <[email protected]> | 2025-12-09 21:03:19 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-12-09 21:03:19 -0500 |
| commit | 4ecebc2c83b7a5c78e42e00af8db3feb7f5c09a6 (patch) | |
| tree | f1e8eaa7bd540f844332f8a10f38c6587a089086 /.github/workflows | |
| parent | 38a79fa4490a9463105681e195630d43a044c100 (diff) | |
| download | opencode-4ecebc2c83b7a5c78e42e00af8db3feb7f5c09a6.tar.gz opencode-4ecebc2c83b7a5c78e42e00af8db3feb7f5c09a6.zip | |
ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/publish.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fa19ac556..7e598b492 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,13 +40,11 @@ jobs: - uses: ./.github/actions/setup-bun - - name: Install makepkg + - name: Setup SSH for AUR + if: inputs.bump || inputs.version run: | sudo apt-get update sudo apt-get install -y pacman-package-manager - - - name: Setup SSH for AUR - run: | mkdir -p ~/.ssh echo "${{ secrets.AUR_KEY }}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa @@ -55,6 +53,7 @@ jobs: ssh-keyscan -H aur.archlinux.org >> ~/.ssh/known_hosts || true - name: Install OpenCode + if: inputs.bump || inputs.version run: curl -fsSL https://opencode.ai/install | bash - name: Login to GitHub Container Registry @@ -81,7 +80,7 @@ jobs: NPM_CONFIG_PROVENANCE: false publish-tauri: - if: github.repository == 'sst/opencode' && github.ref == 'refs/heads/DISABLED' + if: inputs.bump || inputs.version continue-on-error: true strategy: fail-fast: false |
