forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (59 loc) · 2.29 KB
/
release.yml
File metadata and controls
68 lines (59 loc) · 2.29 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
name: Release
on:
push:
branches:
- 'master'
jobs:
release:
name: Release
if: github.repository == 'PrairieLearn/PrairieLearn'
runs-on: ubuntu-latest
permissions:
# Needed for OIDC trusted publishing
id-token: write
steps:
- name: Generate token
id: generate-token
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.CI_BOT_APP_ID }}
private-key: ${{ secrets.CI_BOT_APP_PRIVATE_KEY }}
- name: Checkout Repo
uses: actions/checkout@v6
with:
token: ${{ steps.generate-token.outputs.token }}
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'yarn'
# We need to be running the latest version of `npm` to support OIDC trusted publishing
- name: Upgrade npm
run: npm install -g npm@latest
- name: Preinstall node-gyp headers
run: yarn dlx node-gyp install
- name: Install Dependencies
run: yarn --immutable
# `changesets` will use Prettier to format our changelogs. Because our
# config points to a custom plugin, we need to build that plugin first.
# We'll build everything for good measure.
- name: Build Packages
run: make build
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
# This invokes the `version` script in `package.json`, which will run
# `changeset version` and then `yarn`. We need to run `yarn` in order
# to update `yarn.lock`: https://github.com/changesets/action/issues/170
version: yarn run version
# This invokes the `release` script in `package.json`, which will build
# all the packages and then invoke `changeset publish`.
publish: yarn run release
# Avoid creating GitHub releaseses, as we don't need them.
# This complements `--no-git-tag` in the `release` script in `package.json`.
createGithubReleases: false
env:
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}