From bed1499fbe06272ed20f6d2ad08cf68903655165 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Wed, 3 Aug 2022 21:13:25 -0600 Subject: [PATCH] Remove publish job --- .github/workflows/publish.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 29a7039..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Publish - -on: - push: - branches: - - main - -jobs: - publish-npm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '16' - registry-url: 'https://registry.npmjs.org' - - name: Install dependencies - run: npm ci - - name: Publish - run: | - VERSION=$(node tasks/next-dev-version.js) - npm --no-git-tag-version version ${VERSION} - npm publish --tag dev - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}