summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-12-09 15:01:55 -0600
committerAiden Cline <[email protected]>2025-12-09 15:08:30 -0600
commitdbcc779f0badcd8beeef56c3ea9d4d64abba5e45 (patch)
tree299e8dfab5ac1fef292cd2fedc8808e37640d66d
parentc33a90320c7541796c411fe6eac7524d1dbef07e (diff)
downloadopencode-dbcc779f0badcd8beeef56c3ea9d4d64abba5e45.tar.gz
opencode-dbcc779f0badcd8beeef56c3ea9d4d64abba5e45.zip
ci: fix sdk workflow
-rw-r--r--.github/workflows/sdk.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/sdk.yml b/.github/workflows/sdk.yml
index b191edfdf..bf37060cf 100644
--- a/.github/workflows/sdk.yml
+++ b/.github/workflows/sdk.yml
@@ -37,6 +37,7 @@ jobs:
git config --local user.name "GitHub Action"
git add -A
git commit -m "chore: regen sdk"
- git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify
+ git push origin HEAD:${PUSH_BRANCH} --no-verify
env:
CI: true
+ PUSH_BRANCH: ${{ github.event.pull_request.head.ref || github.ref_name }}