From ee10d9b898509b3bfb0cb1da62f1a3476d8451a8 Mon Sep 17 00:00:00 2001 From: Aiden Cline Date: Tue, 16 Dec 2025 14:12:50 -0600 Subject: ci: auto tag github action once a change is shipped for it --- .github/workflows/release-github-action.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/release-github-action.yml (limited to '.github/workflows/release-github-action.yml') diff --git a/.github/workflows/release-github-action.yml b/.github/workflows/release-github-action.yml new file mode 100644 index 000000000..491f66f6d --- /dev/null +++ b/.github/workflows/release-github-action.yml @@ -0,0 +1,29 @@ +name: release-github-action + +on: + push: + branches: + - main + paths: + - "github/**" + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +permissions: + contents: write + +jobs: + release: + runs-on: blacksmith-4vcpu-ubuntu-2404 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - run: git fetch --force --tags + + - name: Release + run: | + git config --global user.email "opencode@sst.dev" + git config --global user.name "opencode" + ./github/script/release -- cgit v1.2.3