forked from leanprover-community/mathlib4
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (28 loc) · 1.11 KB
/
nightly_bump_toolchain.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: Bump lean-toolchain on nightly-testing
on:
schedule:
- cron: '0 10 * * *' # 11AM CET/2AM PT, 3 hours after lean4 starts building the nightly.
jobs:
update-toolchain:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: nightly-testing # checkout nightly-testing branch
token: ${{ secrets.NIGHTLY_TESTING }}
- name: Get latest release tag from leanprover/lean4-nightly
id: get-latest-release
run: |
RELEASE_TAG="$(curl -s "https://api.github.com/repos/leanprover/lean4-nightly/releases" | jq -r '.[0].tag_name')"
echo "RELEASE_TAG=$RELEASE_TAG" >> "${GITHUB_ENV}"
- name: Update lean-toolchain file
run: |
echo "leanprover/lean4:${RELEASE_TAG}" > lean-toolchain
- name: Commit and push changes
run: |
git config user.name "leanprover-community-mathlib4-bot"
git config user.email "[email protected]"
git add lean-toolchain
git commit -m "chore: bump to ${RELEASE_TAG}"
git push origin nightly-testing