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

54 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]
2020-05-17 06:11:24 +08:00
2020-02-22 22:14:37 +08:00
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-04-02 20:58:12 +08:00
with:
ref: dev
2020-03-31 22:14:23 +08:00
# Setup .npmrc file to publish to npm
2020-11-18 00:57:42 +08:00
- uses: actions/setup-node@v1.4.4
2020-03-31 22:14:23 +08:00
with:
2020-05-17 06:11:24 +08:00
node-version: '10.15.1'
2020-03-31 22:14:23 +08:00
registry-url: 'https://registry.npmjs.org'
2020-05-17 06:11:24 +08:00
scope: '@jamesives'
2020-04-02 20:58:12 +08:00
- name: Configure git
run: |
git config user.email "iam@jamesiv.es"
git config user.name "James Ives"
2020-05-17 06:11:24 +08:00
- name: Install Yarn
run: npm install -g yarn
- run: yarn install --frozen-lockfile
- run: yarn build
2020-04-02 21:27:48 +08:00
- run: npm version patch -m "Release %s 📣"
- run: git push
2020-03-31 22:14:23 +08:00
# Publish to npm
- run: npm publish --access public
env:
2020-03-31 22:22:22 +08:00
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2020-04-02 20:58:12 +08:00
2020-03-31 22:14:23 +08:00
# Setup .npmrc file to publish to GitHub Packages
2020-11-18 00:57:42 +08:00
- uses: actions/setup-node@v1.4.4
2020-03-31 22:14:23 +08:00
with:
2020-04-02 20:58:12 +08:00
node-version: 12
2020-03-31 22:14:23 +08:00
registry-url: 'https://npm.pkg.github.com'
2020-05-17 06:11:24 +08:00
scope: '@jamesives'
- name: Authenticate with the GitHub Package Registry
run:
echo "//npm.pkg.github.com:_authToken=${{ secrets.GITHUB_TOKEN }}" >
~/.npmrc
2020-04-02 20:58:12 +08:00
2020-03-31 22:14:23 +08:00
# Publish to GitHub Packages
- run: npm publish
env:
2020-03-31 22:22:22 +08:00
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}