We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a01441e commit 17e982bCopy full SHA for 17e982b
.github/workflows/build.yaml
@@ -0,0 +1,25 @@
1
+name: publish
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: xu-cheng/texlive-action@d9f893f837a29f066e3c70080540976b47263721
14
+ with:
15
+ scheme: full
16
+ run: |
17
+ apk add rust cargo py3-pip python3
18
+ ./make.sh
19
+# deploy to github pages
20
+ - name: deploy documentation
21
+ uses: JamesIves/github-pages-deploy-action@a1ea191d508feb8485aceba848389d49f80ca2dc
22
23
+ branch: gh-pages
24
+ folder: /home/runner/work/programmingWithPathon/programmingWithPathon/website/
25
+ single-commit: true
0 commit comments