Andrew Kaiser
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
19 additions and
0 deletions
-
.github/workflows/npm-publish.yml
|
@ -0,0 +1,19 @@ |
|
|
|
|
|
name: Npm Publish |
|
|
|
|
|
|
|
|
|
|
|
on: |
|
|
|
|
|
release: |
|
|
|
|
|
types: [created] |
|
|
|
|
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
publish-npm: |
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
steps: |
|
|
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
- 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_token}} |