diff options
author | jake <me@jakechampion.name> | 2020-10-26 22:07:38 +0000 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-10-26 23:18:10 +0100 |
commit | 9301603ee00d9664a13c1ff4662a72150229dd0b (patch) | |
tree | a4bb525ef6f511e729555aaca8df4966280eb42c /.github/workflows/book.yml | |
parent | d740f8383b313f4595375468b1ccde72d9d9ac55 (diff) | |
download | askama-9301603ee00d9664a13c1ff4662a72150229dd0b.tar.gz askama-9301603ee00d9664a13c1ff4662a72150229dd0b.tar.bz2 askama-9301603ee00d9664a13c1ff4662a72150229dd0b.zip |
Fix links and actions which were broken since the default branch was renamed from master to main
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/book.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 3ac7c9c..2df0a27 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -13,7 +13,7 @@ jobs: - run: mdbook build book - name: Deploy uses: peaceiris/actions-gh-pages@v3 - if: ${{ github.ref == 'refs/heads/master' }} + if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./book/book |