We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6026699 commit 83cf8c0Copy full SHA for 83cf8c0
.github/workflows/main.yml
@@ -0,0 +1,23 @@
1
+name: build-deploy-assets
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
7
+ workflow_dispatch:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ container: texlive/texlive
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Build
17
+ run: make all
18
+ - name: Release
19
+ uses: softprops/action-gh-release@v1
20
+ with:
21
+ files: lkmpg.pdf
22
+ tag_name: "nightly"
23
+ prerelease: true
0 commit comments