2020-02-22 22:36:41 +08:00
|
|
|
name: publish-to-npm
|
2020-02-22 22:14:37 +08:00
|
|
|
on:
|
2021-02-10 22:12:47 +08:00
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: 'The updated registry version number.'
|
|
|
|
required: true
|
2021-04-27 06:57:10 +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:
|
2022-03-02 19:48:26 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-27 06:57:10 +08:00
|
|
|
with:
|
|
|
|
ref: dev
|
|
|
|
|
|
|
|
# Setup .npmrc file to publish to npm
|
2022-02-27 06:17:42 +08:00
|
|
|
- uses: actions/setup-node@v3
|
2021-04-27 06:57:10 +08:00
|
|
|
with:
|
2022-04-04 21:42:48 +08:00
|
|
|
node-version: 'v16.13.2'
|
2021-04-27 06:57:10 +08:00
|
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
scope: '@jamesives'
|
|
|
|
|
|
|
|
- name: Configure Git
|
|
|
|
run: |
|
|
|
|
git config user.email "iam@jamesiv.es"
|
|
|
|
git config user.name "James Ives"
|
|
|
|
|
|
|
|
- name: Install Yarn
|
|
|
|
run: npm install -g yarn
|
|
|
|
|
|
|
|
- run: yarn install --frozen-lockfile
|
|
|
|
- run: yarn build
|
2021-11-18 21:42:57 +08:00
|
|
|
- run: git stash
|
2021-04-27 06:57:10 +08:00
|
|
|
- run: npm version ${{ github.event.inputs.version }} -m "Release ${{ github.event.inputs.version }} 📣"
|
|
|
|
- run: git push
|
|
|
|
|
|
|
|
# Publish to npm
|
|
|
|
- run: npm publish --access public
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
|
|
|
|
# Setup .npmrc file to publish to GitHub Packages
|
2022-02-27 06:17:42 +08:00
|
|
|
- uses: actions/setup-node@v3
|
2021-04-27 06:57:10 +08:00
|
|
|
with:
|
2022-04-04 21:42:48 +08:00
|
|
|
node-version: 'v16.13.2'
|
2021-04-27 06:57:10 +08:00
|
|
|
registry-url: 'https://npm.pkg.github.com'
|
|
|
|
scope: '@jamesives'
|
|
|
|
|
|
|
|
- name: Authenticate with the GitHub Package Registry
|
|
|
|
run:
|
|
|
|
echo "//npm.pkg.github.com:_authToken=${{ secrets.GITHUB_TOKEN }}" >
|
|
|
|
~/.npmrc
|
|
|
|
|
|
|
|
# Publish to GitHub Packages
|
|
|
|
- run: npm publish
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|