Skip to content

pnpm_major

pnpm_major #6

Workflow file for this run

name: pnpm_major
permissions:
contents: write
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
token: ${{ secrets.GH_ACTIONS_TOKEN }}
# https://github.com/pnpm/action-setup
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
# version from package.json
run_install: false
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: pnpm major
run: |
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git config --global user.name 'github-actions[bot]'
git fetch --all
git checkout main
pnpm version major
git push origin main --tags