| 123456789101112131415161718192021222324 |
- 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
|