-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (36 loc) · 1.07 KB
/
Copy pathpnpm_major.yml
File metadata and controls
42 lines (36 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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