Version #1
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: Version | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "Semver version bump" | |
required: true | |
type: choice | |
options: [patch, minor, major] | |
jobs: | |
version: | |
name: Version | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Bump version | |
run: pnpm run version -- ${{ inputs.version }} | |
- name: Create PR with new versions | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
branch: "gh-action-version" | |
delete-branch: true | |
title: "Update package versions" | |
body: "Merging this PR will publish packages to npm at the new version." | |
- name: Push tags | |
run: | | |
git switch gh-action-version | |
git push origin --tags |