We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5cb7b commit 9adca1fCopy full SHA for 9adca1f
.github/workflows/build.yaml
@@ -16,8 +16,25 @@ jobs:
16
uses: typst-community/setup-typst@v4
17
- run: typst compile main.typ Luca_Parolini.pdf
18
19
+ - name: Get date
20
+ uses: hudsonm62/datetime-action@v1
21
+ id: datetime
22
+ with:
23
+ timezone: Europe/Rome
24
+ format: yyyy-MM-dd
25
+
26
- name: Upload PDF
27
uses: actions/upload-artifact@v4
28
with:
29
name: Luca_Parolini
30
path: Luca_Parolini.pdf
31
32
+ - name: Bump version and push tag
33
+ uses: anothrNick/github-tag-action@v1
34
35
+ - name: Upload artifact to Release
36
+ uses: softprops/action-gh-release@v2
37
+ if: github.ref_type == 'tag'
38
39
+ files: Luca_Parolini.pdf
40
+ make_latest: true
0 commit comments