-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (38 loc) · 1.36 KB
/
Copy pathrelease.yml
File metadata and controls
44 lines (38 loc) · 1.36 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
43
44
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release (${{ github.ref }})
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
# Lets npm mint a short-lived OIDC token instead of using a long-lived
# NPM_TOKEN. Requires a Trusted Publisher pointing at this workflow file.
id-token: write
steps:
- name: Checkout Repository
uses: actions/checkout@v7
- name: Setup PNPM
uses: pnpm/action-setup@v6
with:
run_install: true
- name: Build
run: pnpm build
- name: Create Release Pull Request or Publish to NPM
id: changesets
uses: changesets/action@v1
with:
publish: pnpm changeset publish
version: pnpm changeset version
title: Release Packages
commit: bump versions
env:
# No NPM_TOKEN on purpose: changesets/action writes an .npmrc when it
# sees one, and that credential would take precedence over OIDC.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}