From 29b7ff6ccfae10f64dc1ea5aec8b334c91a59954 Mon Sep 17 00:00:00 2001 From: Ido Rosenthal Date: Thu, 21 Sep 2023 10:10:21 +0300 Subject: [PATCH] chore: remove version 3 release workflow --- .github/workflows/release3.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/release3.yml diff --git a/.github/workflows/release3.yml b/.github/workflows/release3.yml deleted file mode 100644 index 9f7822552..000000000 --- a/.github/workflows/release3.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: release3 -on: - push: - branches: ['3.x'] -jobs: - npm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Use Node.js 14 - uses: actions/setup-node@v3 - with: - node-version: 14 - registry-url: 'https://registry.npmjs.org/' - cache: yarn - - run: npm i -g yarn@1 - - run: yarn config set network-timeout 300000 - - run: yarn --frozen-lockfile - - run: yarn build - - run: npx pleb@5 publish --tag release-3.x - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}