From 655a1a504e710f4c3a2db0812d7011e067222184 Mon Sep 17 00:00:00 2001 From: neverland Date: Mon, 14 Oct 2024 10:43:19 +0800 Subject: [PATCH] chore: remove release workflow --- .github/workflows/release.yml | 43 ----------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 6963ef9..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,43 +0,0 @@ -# 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.RSBUILD_PLUGIN_NPM_TOKEN }} - - - name: Create GitHub Release - uses: ncipollo/release-action@v1 - with: - generateReleaseNotes: "true"