-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (48 loc) · 1.48 KB
/
release-please.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
52
53
54
on:
push:
branches:
- main
name: release-please
jobs:
build:
name: Release Artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get install -y python3-yaml
texlive
texlive-fonts-extra
texlive-latex-extra
texlive-luatex
texlive-pictures
texlive-plain-generic
texlive-pstricks
texlive-science
latexmk
- name: LaTeX compile
run: |
./render --master-tex Snakemake_HPC_Users.tex \
--configfile config/config_for_github.yaml ;
./render --master-tex Snakemake_HPC_Creators.tex \
--configfile config/config_for_github.yaml;
./render --master-tex Snakemake_HPC_User_Creator_Combi.tex \
--configfile config/config_for_github.yaml
./render --master-tex Snakemake_HPC_Admins.tex \
--configfile config/config_for_github.yaml
- name: Upload Release Artifacts
if: ${{ steps.release.outputs.release_created }}
uses: actions/upload-artifact@v4
with:
name: Slides
path: |
slides/*.pdf
release-please:
runs-on: ubuntu-latest
needs: build
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: simple
package-name: "snakemake-hpc-teaching-material"