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

42 lines
975 B
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 22:14:23 +08:00
build:
2020-02-22 22:14:37 +08:00
runs-on: ubuntu-latest
steps:
2020-03-31 22:14:23 +08:00
- uses: actions/checkout@v2
2020-03-31 20:35:06 +08:00
2020-03-31 22:14:23 +08:00
- name: Configure git
run: |
git config user.email "iam@jamesiv.es"
git config user.name "James Ives"
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1
with:
node-version: '10.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run-script build
- run: npm version patch -m "Release %s"
- run: npm ci
# Publish to npm
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token}}
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v1
with:
registry-url: 'https://npm.pkg.github.com'
scope: '@JamesIves'
# Publish to GitHub Packages
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}