-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 937 Bytes
/
version.yml
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
name: Update and/or publish
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
main:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout commit
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Prepare Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Update and/or publish versions
id: changesets
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm run release
commit: "Update package versions"
title: "Release: Update package versions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}