Hovercards Release & Publish to NPM #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Hovercards Release & Publish to NPM | |
on: | |
workflow_dispatch: | |
inputs: | |
increment: | |
type: choice | |
description: 'Version type' | |
required: true | |
options: | |
- patch | |
- minor | |
- major | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GRAVATAR_GITHUB_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Initialize Git user | |
run: | | |
git config user.name "gravatar-automattic" | |
git config user.email "[email protected]" | |
- name: Initialize the NPM config | |
run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Release | |
working-directory: web/packages/hovercards | |
run: npx release-it ${{ github.event.inputs.increment }} --ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.GRAVATAR_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |