From 960999a803d65e453c05b9e0dba556bc7b9159c3 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 2 Apr 2026 19:42:50 +0200 Subject: [PATCH] chore: add release github action --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cbe0d28 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - name: Set node + uses: actions/setup-node@v6 + with: + node-version-file: .nvmrc + + - run: npx changelogithub + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}