diff options
| author | Dax Raad <[email protected]> | 2025-12-20 10:34:54 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-12-20 10:35:01 -0500 |
| commit | f2343a67942d25f7c78d3058ef329b5103b7e15e (patch) | |
| tree | 6d92c82e0a9c6b65015a2b3e7e6e7f5ca2de9279 /.github | |
| parent | bab000eeb5bced5c340d418591bcccac1613795a (diff) | |
| download | opencode-f2343a67942d25f7c78d3058ef329b5103b7e15e.tar.gz opencode-f2343a67942d25f7c78d3058ef329b5103b7e15e.zip | |
ci
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 59b6d2a65..993682142 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -104,7 +104,7 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - ref: ${{ needs.publish.outputs.tagName }} + ref: ${{ needs.publish.outputs.tag }} - uses: apple-actions/import-codesign-certs@v2 if: ${{ runner.os == 'macOS' }} @@ -147,6 +147,7 @@ jobs: shared-key: ${{ matrix.settings.target }} - name: Prepare + if: inputs.bump || inputs.version run: | cd packages/tauri bun ./scripts/prepare.ts @@ -196,13 +197,13 @@ jobs: needs: - publish - publish-tauri - if: needs.publish.outputs.tagName + if: needs.publish.outputs.tag runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - ref: ${{ needs.publish.outputs.tagName }} + ref: ${{ needs.publish.outputs.tag }} - uses: ./.github/actions/setup-bun |
