Skip to content

Commit ee10d9b

Browse files
committed
ci: auto tag github action once a change is shipped for it
1 parent bbd36e8 commit ee10d9b

File tree

2 files changed

+29
-49
lines changed

2 files changed

+29
-49
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: release-github-action
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "github/**"
9+
10+
concurrency: ${{ github.workflow }}-${{ github.ref }}
11+
12+
permissions:
13+
contents: write
14+
15+
jobs:
16+
release:
17+
runs-on: blacksmith-4vcpu-ubuntu-2404
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
23+
- run: git fetch --force --tags
24+
25+
- name: Release
26+
run: |
27+
git config --global user.email "opencode@sst.dev"
28+
git config --global user.name "opencode"
29+
./github/script/release

.opencode/bun.lock

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)