-
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (26 loc) · 648 Bytes
/
cache.yml
File metadata and controls
31 lines (26 loc) · 648 Bytes
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
name: Build Cache
on:
schedule:
- cron: '0 3 * * 0' # Weekly Sunday 3am
workflow_dispatch:
concurrency:
group: cache-build
cancel-in-progress: false
jobs:
build-cache:
runs-on: ubuntu-latest
container:
image: ghcr.io/quantecon/quantecon-build:latest
permissions:
contents: read
issues: write
packages: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and Cache
uses: quantecon/actions/build-jupyter-cache@v0.6.0
with:
builders: 'html'
source-dir: 'lectures'
create-issue-on-failure: true