From e23e9d5fbd13a4f2142166fe90351a8fe8a868aa Mon Sep 17 00:00:00 2001 From: Zefau Date: Sat, 28 Mar 2020 21:55:41 +0100 Subject: [PATCH] Delete npmpublish.yml --- .github/workflows/npmpublish.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/npmpublish.yml diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml deleted file mode 100644 index 6e570360..00000000 --- a/.github/workflows/npmpublish.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: npm publish - -on: - release: - types: [created] - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: 12 - - run: npm ci - - run: npm test - - publish-npm: - needs: build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions/setup-node@v1 - with: - node-version: 12 - registry-url: https://registry.npmjs.org/ - - run: npm ci - - run: npm publish - env: - NODE_AUTH_TOKEN: ${{secrets.npm}}