Skip to content

Publish package to npmjs #27

Publish package to npmjs

Publish package to npmjs #27

# NOTE: taken from https://github.com/MylesBorins/node-osc/blob/main/.github/workflows/bump-version.yml
name: Bump version, Tag & Publish
on:
workflow_dispatch:
inputs:
version:
description: 'Semver type of new version'
required: true
type: choice
options:
- major
- minor
- patch
- prerelease
prereleaseid:
description: 'Prerelease id (rc)'
required: false
default: ''
jobs:
bump-version:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Check out source
uses: actions/checkout@v3
with:
ssh-key: ${{secrets.DEPLOY_KEY}}
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies and build
env:
GSAP_TOKEN: ${{ secrets.GSAP_TOKEN }}
run: |
npm config set //npm.greensock.com/:_authToken=$GSAP_TOKEN
npm config set @gsap:registry=https://npm.greensock.com
npm ci
npm run build
- name: Setup Git
run: |
git config user.name github-actions
git config user.email [email protected]
- name: Bump version
run: |
npm version ${{ github.event.inputs.version }} --preid ${{ github.event.inputs.prereleaseid }}
- name: Publish
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --provenance --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Push latest version
run: git push origin main --follow-tags