summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-06-12 13:04:01 -0400
committerDax Raad <[email protected]>2025-06-12 13:04:01 -0400
commitf0dbe40522b28262549fcffd6b214b47e85603c7 (patch)
tree8151d61cb6833b0870ac74e5c8c7f50c91fb2d61 /.github/workflows/release.yml
parent41c54f629ccbc7399a70cc0b436630330577b3f6 (diff)
downloadopencode-f0dbe40522b28262549fcffd6b214b47e85603c7.tar.gz
opencode-f0dbe40522b28262549fcffd6b214b47e85603c7.zip
sync
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml42
1 files changed, 0 insertions, 42 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index 12cd3647a..000000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-name: release
-
-on:
- workflow_dispatch:
- push:
- tags:
- - "*"
-
-concurrency: ${{ github.workflow }}-${{ github.ref }}
-
-permissions:
- contents: write
- packages: write
-
-jobs:
- goreleaser:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- - run: git fetch --force --tags
-
- - uses: actions/setup-go@v5
- with:
- go-version: ">=1.24.0"
- cache: true
- cache-dependency-path: go.sum
-
- - uses: oven-sh/setup-bun@v2
- with:
- bun-version: 1.2.16
-
- - run: |
- bun install
- ./script/publish.ts
- working-directory: ./packages/opencode
- env:
- GITHUB_TOKEN: ${{ secrets.SST_GITHUB_TOKEN }}
- AUR_KEY: ${{ secrets.AUR_KEY }}
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}