diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 76c9e4d1f..000000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: Publish - -'on': - push: - tags: - - 'v[0-9]+.[0-9]+.[0-9]+' - - 'v[0-9]+.[0-9]+.[0-9]+-pre[0-9]+' - -jobs: - build: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x] - steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 - with: - node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ - - - name: Install - run: | - yarn install --frozen-lockfile - - name: Build - run: | - yarn build - - name: Test - run: | - yarn test:coverage - - name: Push release to npm (public) - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: | - yarn publish --access public .