diff options
| author | Frank <[email protected]> | 2025-07-20 12:36:53 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-07-20 12:36:53 -0400 |
| commit | 933d50e25a7076e4587d2579c07f21f6bc02d07f (patch) | |
| tree | c9e6a30b9abfd034948404ee65f87ecdead7bbde /.github/workflows | |
| parent | 800bee2722029ac6f531a4c18c7e52c1697a3c64 (diff) | |
| download | opencode-933d50e25a7076e4587d2579c07f21f6bc02d07f.tar.gz opencode-933d50e25a7076e4587d2579c07f21f6bc02d07f.zip | |
wip: github actions
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/publish-github-action.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/publish-github-action.yml b/.github/workflows/publish-github-action.yml index e4b4ae758..3d4bac622 100644 --- a/.github/workflows/publish-github-action.yml +++ b/.github/workflows/publish-github-action.yml @@ -2,6 +2,9 @@ name: publish-github-action on: workflow_dispatch: + push: + tags: + - "github-v*.*.*" concurrency: ${{ github.workflow }}-${{ github.ref }} @@ -18,12 +21,9 @@ jobs: - run: git fetch --force --tags - - uses: oven-sh/setup-bun@v2 - with: - bun-version: 1.2.17 - - name: Publish run: | git config --global user.email "[email protected]" git config --global user.name "opencode" - ./scripts/publish-github-action.ts + ./scripts/publish + working-directory: ./sdks/github |
