Skip to content

Publish

Publish #32

Workflow file for this run

name: Publish
on:
workflow_dispatch:
inputs:
release-type:
type: choice
description: Type of the release
options:
- snapshot
- patch
- minor
- major
jobs:
publish-release:
runs-on: ubuntu-latest
if: ${{ github.event.inputs.release-type != 'snapshot' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Configure github-actions git
run: |
git config --global user.name 'github-actions'
git config --global user.email 'github-actions@users.noreply.github.com'
- name: Bump version
run: npm version ${{ github.event.inputs.release-type }}
- name: Generate changelog
run: |
pnpm changelog
git add CHANGELOG.md
git commit -m 'chore: changelog'
- name: Push release tag
run: git push origin main --follow-tags
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-snapshot:
runs-on: ubuntu-latest
if: ${{ github.event.inputs.release-type == 'snapshot' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install pnpm
uses: pnpm/action-setup@v2
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Bump snapshot version
run: npm version --no-git-tag-version --preid=snapshot prepatch
- name: Bump snapshot version
run: npm publish --tag snapshot
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}