@@ -162,7 +162,7 @@ jobs:
162
162
163
163
- name: Deploy
164
164
uses: peaceiris/actions-gh-pages@v3
165
- if: github.ref == 'refs/heads/main'
165
+ if: ${{ github.ref == 'refs/heads/main' }}
166
166
with:
167
167
github_token: ${{ secrets.GITHUB_TOKEN }}
168
168
publish_dir: ./public
@@ -672,7 +672,7 @@ jobs:
672
672
673
673
- name: Deploy
674
674
uses: peaceiris/actions-gh-pages@v3
675
- if: github.ref == 'refs/heads/main'
675
+ if: ${{ github.ref == 'refs/heads/main' }}
676
676
with:
677
677
github_token: ${{ secrets.GITHUB_TOKEN }}
678
678
publish_dir: ./public
@@ -722,7 +722,7 @@ jobs:
722
722
723
723
- name: Deploy
724
724
uses: peaceiris/actions-gh-pages@v3
725
- if: github.ref == 'refs/heads/main'
725
+ if: ${{ github.ref == 'refs/heads/main' }}
726
726
with:
727
727
github_token: ${{ secrets.GITHUB_TOKEN }}
728
728
publish_dir: ./public
@@ -777,7 +777,7 @@ jobs:
777
777
778
778
- name: Deploy
779
779
uses: peaceiris/actions-gh-pages@v3
780
- if: github.ref == 'refs/heads/main'
780
+ if: ${{ github.ref == 'refs/heads/main' }}
781
781
with:
782
782
github_token: ${{ secrets.GITHUB_TOKEN }}
783
783
publish_dir: ./out
@@ -828,7 +828,7 @@ jobs:
828
828
829
829
- name: deploy
830
830
uses: peaceiris/actions-gh-pages@v3
831
- if: github.ref == 'refs/heads/main'
831
+ if: ${{ github.ref == 'refs/heads/main' }}
832
832
with:
833
833
github_token: ${{ secrets.GITHUB_TOKEN }}
834
834
publish_dir: ./dist
@@ -887,7 +887,7 @@ jobs:
887
887
888
888
- name: Deploy
889
889
uses: peaceiris/actions-gh-pages@v3
890
- if: github.ref == 'refs/heads/main'
890
+ if: ${{ github.ref == 'refs/heads/main' }}
891
891
with:
892
892
github_token: ${{ secrets.GITHUB_TOKEN }}
893
893
publish_dir: ./website/build
@@ -949,7 +949,7 @@ jobs:
949
949
950
950
- name: Deploy
951
951
uses: peaceiris/actions-gh-pages@v3
952
- if: github.ref == 'refs/heads/main'
952
+ if: ${{ github.ref == 'refs/heads/main' }}
953
953
with:
954
954
github_token: ${{ secrets.GITHUB_TOKEN }}
955
955
publish_dir: ./site
@@ -990,7 +990,7 @@ jobs:
990
990
991
991
- name: Deploy
992
992
uses: peaceiris/actions-gh-pages@v3
993
- if: github.ref == 'refs/heads/main'
993
+ if: ${{ github.ref == 'refs/heads/main' }}
994
994
with:
995
995
github_token: ${{ secrets.GITHUB_TOKEN }}
996
996
publish_dir: ./book
@@ -1034,7 +1034,7 @@ jobs:
1034
1034
1035
1035
- name: Deploy
1036
1036
uses: peaceiris/actions-gh-pages@v3
1037
- if: github.ref == 'refs/heads/main'
1037
+ if: ${{ github.ref == 'refs/heads/main' }}
1038
1038
with:
1039
1039
github_token: ${{ secrets.GITHUB_TOKEN }}
1040
1040
publish_dir: ./build/web
@@ -1083,7 +1083,7 @@ jobs:
1083
1083
1084
1084
- name : Deploy
1085
1085
uses : peaceiris/actions-gh-pages@v3
1086
- if : github.ref == 'refs/heads/main'
1086
+ if : ${{ github.ref == 'refs/heads/main' }}
1087
1087
with :
1088
1088
github_token : ${{ secrets.GITHUB_TOKEN }}
1089
1089
publish_dir : ./public
@@ -1169,7 +1169,7 @@ jobs:
1169
1169
1170
1170
- name : Deploy to GitHub Pages
1171
1171
uses : peaceiris/actions-gh-pages@v3
1172
- if : github.ref == 'refs/heads/main'
1172
+ if : ${{ github.ref == 'refs/heads/main' }}
1173
1173
with :
1174
1174
github_token : ${{ secrets.GITHUB_TOKEN }}
1175
1175
publish_dir : ./Output
0 commit comments