From cb84255710042d05f84524afab5d830b8d05a0a5 Mon Sep 17 00:00:00 2001 From: Cheng Liu Date: Fri, 28 Jun 2024 23:51:20 -0700 Subject: [PATCH] :wrench: --- .github/workflows/release.yaml | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..9e67636 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,36 @@ +name: Release + +on: + push: + branches: + - main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: 18.x + + - name: Install Dependencies + uses: pnpm/action-setup@v2.0.1 + with: + version: 8.10.2 + run_install: true + + - name: Create Release Pull Request + uses: changesets/action@v1 + with: + # This expects you to have a script called release which does a build for your packages and calls changeset publish + publish: pnpm exec changeset publish + env: + GITHUB_TOKEN: ${{ secrets.BOT_ACCESS_TOKEN }} + NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} \ No newline at end of file