We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c5214 commit 21887e0Copy full SHA for 21887e0
.github/workflows/main.yml
@@ -6,6 +6,7 @@ on:
6
# PRs can only use caches from their target branch. We therefore need to
7
# make sure we run on 'main' too.
8
- main
9
+ - dev
10
pull_request:
11
12
concurrency:
@@ -35,8 +36,12 @@ jobs:
35
36
extra_system_packages: "font-liberation"
37
latexmk_shell_escape: true
38
39
+ - name: Get short SHA for commit
40
+ id: sha_short
41
+ run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
42
+
43
- name: Upload PDF file
44
uses: actions/upload-artifact@v4
45
with:
- name: FormalLanguageConstrainedReachabilityLectureNotes_latest
46
+ name: FormalLanguageConstrainedReachabilityLectureNotes_${{ steps.sha_short.outputs.sha_short }}
47
path: tex/FormalLanguageConstrainedReachabilityLectureNotes.pdf
0 commit comments