From 68bfd489717ae7733e5f4a1152e33e6991c680d2 Mon Sep 17 00:00:00 2001 From: Chris Villa Date: Wed, 20 Sep 2023 17:49:02 +0100 Subject: [PATCH] ci: remove PR publish github action --- .github/workflows/publish-pr.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/publish-pr.yml diff --git a/.github/workflows/publish-pr.yml b/.github/workflows/publish-pr.yml deleted file mode 100644 index 17ea15f49..000000000 --- a/.github/workflows/publish-pr.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Publish PR release -on: - pull_request: - branches: [main] - -jobs: - publish-to-npm: - runs-on: ubuntu-latest - - # Don't run on regular releases - if: "!startsWith(github.event.head_commit.message, 'release: ')" - steps: - - uses: actions/checkout@v2.0.0 - - - name: Setup Node.js - uses: actions/setup-node@v1 - with: - node-version: "18.16.1" - registry-url: "https://registry.npmjs.org" - - - name: Install dependencies - run: yarn - - - name: Run release script - run: yarn release:pr - - - name: Publish all packages - run: ./scripts/publish.sh pr - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - timeout-minutes: 10