Răsfoiți Sursa

Delete npm.yml

Ryan Chandler 4 ani în urmă
părinte
comite
99179d4ab5
1 a modificat fișierele cu 0 adăugiri și 60 ștergeri
  1. 0 60
      .github/workflows/npm.yml

+ 0 - 60
.github/workflows/npm.yml

@@ -1,60 +0,0 @@
-name: Publish to npm
-
-on:
-  release:
-    types: [published]
-
-jobs:
-  publish:
-    runs-on: ubuntu-latest
-    steps:
-      - name: Checkout repository
-        uses: actions/checkout@v2
-      
-      - name: Setup Node (${{ matrix.node-version }})
-        uses: actions/setup-node@v1
-        with:
-          node-version: ${{ matrix.node-version }}
-          registry-url: https://registry.npmjs.org/
-      
-      - name: Set up git user
-        run: git config --global user.name ${GITHUB_ACTOR}
-      
-      - name: Set up git email
-        run: git config --global user.name ${GITHUB_ACTOR}@users.noreply.github.com
-
-      - name: Install dependencies
-        run: yarn install --frozen-lockfile
-
-      - name: Build dist folder
-        run: yarn build
-        
-      - name: Run test suite
-        run: yarn test
-
-      - name: Commit dist folder if needed #it fails if nothing has changed so we allow an error
-        run: git commit -am 'Rebuild dist'
-        continue-on-error: true
-
-      - name: Read tag name
-        run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF:10}
-
-      - name: Delete tag #for some reason npm version fails if the tag exists
-        run: git tag -d $RELEASE_VERSION
-
-      - name: Update version in package.json
-        run: npm version $RELEASE_VERSION
-
-      - name: Push changed files to master
-        run: git push origin HEAD:2.x
-
-      - name: Recreate tag
-        run: git tag -f $RELEASE_VERSION
-
-      - name: Update remote tag
-        run: git push --tags --force
-
-      - name: Publish to npm
-        run: npm publish --access public
-        env:
-          NODE_AUTH_TOKEN: ${{secrets.npm_token}}