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}}