forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (45 loc) · 1.74 KB
/
release.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Release
on:
push:
branches:
- 'master'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- 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 version
# This invokes the `release` script in `package.json`, which will build
# all the packages and then invoke `changeset publish`.
publish: yarn 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: ${{ secrets.GITHUB_TOKEN }}
# This token was generated by Nathan Walters on 8 February 2022.
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}