-
Notifications
You must be signed in to change notification settings - Fork 21
51 lines (44 loc) · 1.24 KB
/
build-release-thesis.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build and release thesis
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build_release_thesis:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: '0'
lfs: true
- name: Create initial tag
run: |
if [ -z "$(git tag -l 'v*')" ]; then
git tag v0.0.0
fi
- name: Bump version and push tag
id: bump
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: 'patch'
- uses: typst-community/setup-typst@v3
- run: typst compile thesis.typ thesis.pdf
- run: typst compile proposal.typ proposal.pdf
- run: typst compile registration_certificate.typ registration_certificate.pdf
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.bump.outputs.new_tag }}
name: Version ${{ steps.bump.outputs.new_tag }}
draft: false
prerelease: false
files: |
thesis.pdf
proposal.pdf
registration_certificate.pdf