From 80aab93bb7f1eed2a3cd3d64d13ea2f4d38d38b3 Mon Sep 17 00:00:00 2001 From: hzrd149 Date: Mon, 24 Mar 2025 21:46:36 +0000 Subject: [PATCH] remove publish next --- .github/workflows/publish-next.yml | 37 ------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/publish-next.yml diff --git a/.github/workflows/publish-next.yml b/.github/workflows/publish-next.yml deleted file mode 100644 index 36cbea1..0000000 --- a/.github/workflows/publish-next.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Release next - -on: - push: - branches: - - master - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - release: - name: Release next - runs-on: ubuntu-latest - - steps: - - name: Checkout Repo - uses: actions/checkout@v4 - - - uses: pnpm/action-setup@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version-file: .nvmrc - cache: "pnpm" - - - name: Install Dependencies - run: pnpm install - - - name: Publish next version - run: | - pnpm config set //registry.npmjs.org/:_authToken=$NPM_TOKEN && \ - pnpm whoami && \ - pnpm changeset version --snapshot next && \ - pnpm changeset publish --tag next - env: - NPM_TOKEN: ${{ secrets.NPM_TOKEN }}