-
Notifications
You must be signed in to change notification settings - Fork 5.1k
137 lines (118 loc) · 4.3 KB
/
Copy pathrelease.yml
File metadata and controls
137 lines (118 loc) · 4.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Release
on:
push:
branches:
- main
- release-v*
paths:
- '.changeset/**'
- '.github/workflows/release.yml'
workflow_dispatch:
inputs:
snapshot:
description: 'Publish a snapshot release instead of a normal release'
type: boolean
default: false
concurrency:
group: 'release-${{ github.ref_name }}'
cancel-in-progress: false
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
pull-requests: write
issues: write
# do not attempt running in forks
if: github.repository_owner == 'vercel'
steps:
- name: Configure Git
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Checkout Repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
- name: Setup Node.js 24
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
- name: Install Dependencies
run: pnpm i
# Normal release path
- name: Create Release Pull Request or Publish to npm
if: inputs.snapshot != true
id: changesets
uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1
with:
version: pnpm ci:version
publish: pnpm ci:release
setupGitUser: false
# When using "github-api", all commits and tags are GPG-signed and attributed to the user or app who owns the GITHUB_TOKEN
commitMode: 'github-api'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Find release PR number
if: inputs.snapshot != true && steps.changesets.outputs.published == 'true'
id: release-pr
run: echo "number=$(gh api repos/${{ github.repository }}/commits/${{ github.sha }}/pulls --jq '.[0].number')" >> "$GITHUB_OUTPUT"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Notify released PRs and issues
if: inputs.snapshot != true && steps.changesets.outputs.published == 'true'
run: |
cd .github/scripts/notify-released
npm install --no-save
node index.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
PULL_REQUEST_NUMBER: ${{ steps.release-pr.outputs.number }}
- name: Attach SLSA provenance to GitHub Releases
if: inputs.snapshot != true && steps.changesets.outputs.published == 'true'
run: |
cd .github/scripts/upload-provenance
npm install --no-save
node index.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PUBLISHED_PACKAGES: ${{ steps.changesets.outputs.publishedPackages }}
# Snapshot release path
- name: Add SHORT_SHA env property with commit short sha
if: inputs.snapshot == true
run: echo "SHORT_SHA=`echo ${{ github.sha }} | cut -c1-8`" >> $GITHUB_ENV
- name: Delete pre.json if it exists
if: inputs.snapshot == true
run: rm -f .changeset/pre.json
- name: Version Packages (snapshot)
if: inputs.snapshot == true
run: pnpm changeset version --snapshot ${SHORT_SHA}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Clean Examples
if: inputs.snapshot == true
run: pnpm clean-examples
- name: Build
if: inputs.snapshot == true
run: pnpm clean && pnpm build
- name: Publish Snapshot Release
if: inputs.snapshot == true
run: pnpm changeset publish --no-git-tag --tag snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Notify snapshot release pull request
if: inputs.snapshot == true
run: |
cd .github/scripts/notify-released
npm install --no-save
node notify-snapshot.mjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}