fix: correct registry-url (#18851)

* fix: correct registry-url

* chore: test for publish

* chore: test for publish

* chore: test for publish

* fix: publish by antd-tools

* chore: remove useless command

* fix: remove version check

* Revert "fix: remove version check"

This reverts commit 18877f5e5f.

* chore: remove debug action

* chore: remove filter
This commit is contained in:
只捱宅 2019-09-18 20:46:08 +08:00 committed by GitHub
parent 69d079e0ed
commit a5b4252488
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,15 +14,17 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://npm.pkg.github.com'
registry-url: 'https://registry.npmjs.org'
- name: install
run: npm install
- name: compile
run: npm run compile
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://npm.pkg.github.com'
- name: publish
run: npm publish
run: npm run pub
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}