Browse Source

chore: publish to github-package when released

pull/18801/head
orzyyyy 5 years ago
committed by 偏右
parent
commit
f986c6b459
  1. 29
      .github/workflows/publish-to-github-package.yml

29
.github/workflows/publish-to-github-package.yml

@ -0,0 +1,29 @@
name: Publish to github-package
on:
release:
actions:
- published
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://npm.pkg.github.com'
- name: install
run: npm install
- name: compile
run: npm run compile
- name: publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save