We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12693ff commit a854eaeCopy full SHA for a854eae
1 file changed
.github/workflows/build.yaml
@@ -3,7 +3,6 @@ name: Build Tutorials
3
4
on:
5
push:
6
- branches: [ master ]
7
tags: ['*']
8
pull_request:
9
branches: [ master ]
@@ -47,6 +46,15 @@ jobs:
47
46
make clean
48
make html
49
cp -rT _build/html public
+
50
+ - name: Build new theme version
51
+ if: github.ref == 'refs/heads/master'
52
+ shell: bash -l {0}
53
+ run: |
54
+ git checkout newtheme;
55
+ make clean
56
+ make html-dev
57
+ cp -rT _build/html public/new
58
59
- name: Deploy 🚀
60
if: github.ref == 'refs/heads/master'
0 commit comments