diff options
author | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-26 18:11:10 +0200 |
---|---|---|
committer | Nicolas Patry <patry.nicolas@protonmail.com> | 2023-07-26 18:11:10 +0200 |
commit | 8da6568c2089d74b203857702671cb23c7627e79 (patch) | |
tree | 2454412ead63b49a3de3c390d338053cf28fe0e1 /.github | |
parent | 07a22fe606cbf2bd382625d8bd1678b05a974c01 (diff) | |
download | candle-8da6568c2089d74b203857702671cb23c7627e79.tar.gz candle-8da6568c2089d74b203857702671cb23c7627e79.tar.bz2 candle-8da6568c2089d74b203857702671cb23c7627e79.zip |
Typo.
Diffstat (limited to '.github')
-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: |