Skip to content

Release

Release #16

Workflow file for this run

name: Release
permissions:
contents: write
id-token: write
on:
workflow_dispatch:
inputs:
increment:
description: "increment (patch, minor, major, '')"
required: false
default: ""
preRelease:
description: "preRelease (alpha, beta, rc, '')"
required: false
default: ""
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Install pnpm
uses: pnpm/action-setup@v3
- name: Set node
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Login to NPM
run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Setup
run: npm i -g @antfu/ni release-it changelogithub
- name: Install
run: nci
- name: Pre Release
run: release-it ${{ github.event.inputs.increment }} --verbose --preRelease ${{ github.event.inputs.preRelease }} && changelogithub
if: "${{ github.event.inputs.preRelease != '' }}"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Release
run: release-it ${{ github.event.inputs.increment }} --verbose && changelogithub
if: "${{ github.event.inputs.preRelease == '' }}"
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}