github-pages-deploy-action/.github/workflows/publish.yml

51 lines
1.3 KiB
YAML
Raw Normal View History

2020-02-22 22:36:41 +08:00
name: publish-to-npm
2020-02-22 22:14:37 +08:00
on:
release:
types: [created]
jobs:
2020-03-31 20:35:06 +08:00
publish-npm-js:
2020-02-22 22:14:37 +08:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: dev
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
2020-02-22 22:24:57 +08:00
- name: Configure git
run: |
git config user.email "iam@jamesiv.es"
git config user.name "James Ives"
2020-02-22 22:33:19 +08:00
- run: npm install
2020-03-02 22:37:21 +08:00
- run: npm run-script build
2020-02-22 22:23:41 +08:00
- run: npm version patch -m "Release %s"
2020-02-22 22:14:37 +08:00
- run: npm ci
- run: npm publish
env:
2020-02-22 22:36:41 +08:00
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
2020-03-31 20:35:06 +08:00
publish-npm-github:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: dev
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: 'https://npm.pkg.github.com'
- name: Configure git
run: |
git config user.email "iam@jamesiv.es"
git config user.name "James Ives"
- run: npm install
- run: npm run-script build
- run: npm version patch -m "Release %s"
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}