Skip to content

Gravatar Quick Editor Release & Publish to NPM #4

Gravatar Quick Editor Release & Publish to NPM

Gravatar Quick Editor Release & Publish to NPM #4

name: Gravatar Quick Editor 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 "gravatar@automattic.com"
- 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/quick-editor
run: npx release-it ${{ github.event.inputs.increment }} --ci
env:
GITHUB_TOKEN: ${{ secrets.GRAVATAR_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}