Skip to content

Publish to NPM

Publish to NPM #121

Workflow file for this run

name: Publish to NPM
on:
workflow_dispatch:
inputs:
dry-run:
description: 'Do not touch or write anything, but show the commands'
default: true
type: boolean
jobs:
release-it:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Setup
uses: ./.github/actions/setup
- name: Setup NPM auth token
run: |
npm set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
- name: Dry Run Release
if: ${{ inputs.dry-run }}
run: |
npm publish --tag customer_hotfix --verbose --dry-run
- name: NPM Publish
if: ${{ !inputs.dry-run }}
run: |
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git config --global user.name "${{ secrets.GIT_USERNAME }}"
npm publish --tag customer_hotfix --verbose