diff options
| author | Frank <[email protected]> | 2025-07-16 15:36:23 +0800 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-07-16 15:36:23 +0800 |
| commit | 20b8efcc50477dbeef65746d22c349fd9e5ac754 (patch) | |
| tree | 416d47bdac53cf078cef4751f02d1f2cddc1734e /.github | |
| parent | a86d42149f52e4cb2b595016d1e81f04a0ecba3b (diff) | |
| download | opencode-20b8efcc50477dbeef65746d22c349fd9e5ac754.tar.gz opencode-20b8efcc50477dbeef65746d22c349fd9e5ac754.zip | |
wip: github actions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish-github-action.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/publish-github-action.yml b/.github/workflows/publish-github-action.yml new file mode 100644 index 000000000..7c486097d --- /dev/null +++ b/.github/workflows/publish-github-action.yml @@ -0,0 +1,24 @@ +name: publish-github-action + +on: + workflow_dispatch: + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - run: git fetch --force --tags + + - uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.2.17 + + - name: Publish + run: ./script/publish-github-action.ts + working-directory: ./packages/opencode |
