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 685260d commit 8297747Copy full SHA for 8297747
.github/workflows/deploy.yml
@@ -2,7 +2,6 @@ name: Deploy To GitHub Pages
2
on:
3
schedule:
4
- cron: '0 22 * * *'
5
- pull_request:
6
push:
7
branches:
8
- master
@@ -19,13 +18,12 @@ jobs:
19
18
- name: Build book
20
run: ./mdbook build
21
- name: Upload artifact
22
- if: github.ref == 'refs/heads/master'
23
uses: actions/upload-pages-artifact@v3
24
with:
25
path: ./book
26
27
deploy:
28
- if: github.ref == 'refs/heads/master' && github.repository_owner == 'rust-lang'
+ if: github.repository_owner == 'rust-lang'
29
needs: build
30
31
permissions:
0 commit comments