diff options
Diffstat (limited to '.github/workflows/book-cd.yml')
-rw-r--r-- | .github/workflows/book-cd.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/book-cd.yml b/.github/workflows/book-cd.yml index 8316d009..e25fe990 100644 --- a/.github/workflows/book-cd.yml +++ b/.github/workflows/book-cd.yml @@ -1,17 +1,17 @@ -name: Deploy +name: Deploy Rust book on: - pull-request: - # TODO put this back only when merging after this PR lands. - # push: - # branches: - # - main + # TODO put this back only when merging after this PR lands. + pull_request: + push: + branches: + - main jobs: deploy: runs-on: ubuntu-latest - permissions: - contents: write # To push a branch - pull-requests: write # To create a PR from that branch + # permissions: + # contents: write # To push a branch + # pull-requests: write # To create a PR from that branch steps: - uses: actions/checkout@v3 with: |