From 33db7e1968f39fda850e9ecd2562ca25965a3936 Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 30 Sep 2024 14:12:29 +0800 Subject: [PATCH] chore: setup release workflow (#9) --- .github/workflows/release.yml | 43 +++++++++++++++++++++++++++++++++++ package.json | 3 ++- 2 files changed, 45 insertions(+), 1 deletion(-) 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..550ef42 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,43 @@ +# This action will publish the package to npm and create a GitHub release. +name: Release + +on: + # Run `npm run bump` to bump the version and create a git tag. + push: + tags: + - "v*" + + workflow_dispatch: + +permissions: + contents: write + id-token: write + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install Pnpm + run: corepack enable + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 22 + cache: "pnpm" + + - name: Install Dependencies + run: pnpm install + + - name: Publish + uses: JS-DevTools/npm-publish@v3 + with: + token: ${{ secrets.NPM_TOKEN }} + + - name: Create GitHub Release + uses: ncipollo/release-action@v1 + with: + generateReleaseNotes: "true" diff --git a/package.json b/package.json index ba360e7..1e57ec7 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,8 @@ "lint": "biome check .", "lint:write": "biome check . --write", "prepare": "simple-git-hooks && npm run build", - "test": "playwright test" + "test": "playwright test", + "bump": "npx bumpp" }, "simple-git-hooks": { "pre-commit": "npx nano-staged"