We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build
buildall
1 parent 2030aa0 commit dde73e1Copy full SHA for dde73e1
1 file changed
.github/workflows/prs.yml
@@ -36,17 +36,16 @@ jobs:
36
if: contains(github.event.pull_request.labels.*.name, 'Run all tutorials')
37
run: |
38
export TUTORIALS_MAIN_BRANCH=origin/main
39
- make executeall
40
- make convertall
+ make clean
+ make buildall
41
shell: bash
42
43
# Otherwise, only run tutorials that have been modified
44
- name: Run only modified tutorials
45
if: "!contains(github.event.pull_request.labels.*.name, 'Run all tutorials')"
46
47
48
- make execute
49
- make convert
+ make build
50
51
52
- name: Name artifact
0 commit comments