summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2025-12-16 16:36:15 +0000
committerDavid Hill <[email protected]>2025-12-16 16:36:15 +0000
commita190eda2c897491cea569c533f4947db9db67b40 (patch)
treee38991631fd1d875eaaf740cc6b63a9950389ebf /.github
parent1f18f389c0c0b770ec90d2bd653487a8965ed130 (diff)
parent84e56ee6144ea82d36779fc7b15d6615b346bb83 (diff)
downloadopencode-a190eda2c897491cea569c533f4947db9db67b40.tar.gz
opencode-a190eda2c897491cea569c533f4947db9db67b40.zip
Merge branch 'dev' of https://github.com/sst/opencode into dev
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/publish.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index ebfc5059b..afc23a81f 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -165,6 +165,7 @@ jobs:
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
RUST_TARGET: ${{ matrix.settings.target }}
GH_TOKEN: ${{ github.token }}
+ OPENCODE_RELEASE_TAG: ${{ needs.publish.outputs.tagName }}
# Fixes AppImage build issues, can be removed when https://github.com/tauri-apps/tauri/pull/12491 is released
- name: Install tauri-cli from portable appimage branch
@@ -197,3 +198,19 @@ jobs:
releaseId: ${{ needs.publish.outputs.releaseId }}
tagName: ${{ needs.publish.outputs.tagName }}
releaseAssetNamePattern: opencode-desktop-[platform]-[arch][ext]
+ releaseDraft: true
+
+ publish-release:
+ needs:
+ - publish
+ - publish-tauri
+ runs-on: blacksmith-4vcpu-ubuntu-2404
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ ref: ${{ needs.publish.outputs.tagName }}
+
+ - run: gh release edit ${{ steps.publish.outputs.tagName }} --draft=false
+ env:
+ GH_TOKEN: ${{ github.token }}