We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 652243d commit 6462828Copy full SHA for 6462828
.github/workflows/ci.yml
@@ -106,7 +106,7 @@ jobs:
106
run: testament all
107
108
- name: Build docs
109
- if: matrix.branch == 'master'
+ if: github.ref == 'refs/heads/master'
110
run: nimble docs
111
112
- name: Deploy docs
@@ -115,8 +115,8 @@ jobs:
115
# and remove `github.ref == 'refs/heads/master'` below
116
if: |
117
github.event_name == 'push' && github.ref == 'refs/heads/master' &&
118
- matrix.target.os == 'linux' && matrix.target.cpu == 'amd64' &&
119
- matrix.branch == 'master'
+ matrix.target.os == 'linux' && matrix.target.cpu == 'amd64'
+
120
uses: crazy-max/ghaction-github-pages@v4
121
with:
122
build_dir: parsesql/htmldocs
0 commit comments