F95API/.github/workflows/publish.yml

30 lines
832 B
YAML
Raw Normal View History

2020-11-22 09:51:20 +00:00
name: publish
2020-11-22 09:24:53 +00:00
on:
push:
2020-11-22 13:05:58 +00:00
branches: [master]
2020-11-22 09:24:53 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-11-22 13:14:04 +00:00
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
# 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'
# Defaults to the user or organization that owns the workflow file
scope: '@millenniumearl'
# Publish to GitHub Packages
- run: npm publish
env:
2020-11-22 13:25:46 +00:00
NODE_AUTH_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }}