diff options
author | Silas Bartha <[email protected]> | 2024-06-02 18:38:40 -0400 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-06-02 18:38:40 -0400 |
commit | 2a50eb9b405efb2a1935ebea229791d61272fe8c (patch) | |
tree | 0698e5781b4b5071a181213c9c62a04ec40cb029 /.github/workflows/docs.yml | |
parent | ed31c4201834719b2b75dca7cad1637abf1a80bb (diff) | |
parent | 2d798abe12c1a80cbd5011a8a1f2b18ee5d84e2d (diff) |
Merge branch 'master' of github.com:exvacuum/occule
Diffstat (limited to '.github/workflows/docs.yml')
-rw-r--r-- | .github/workflows/docs.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c563bf5..19fab14 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,7 +1,7 @@ name: Docs on: push: - branches: [main] + branches: [master] permissions: contents: read pages: write @@ -28,7 +28,7 @@ jobs: - name: Build docs run: cargo doc --no-deps - name: Add redirect - run: echo '<meta http-equiv="refresh" content="0;url=aoc/index.html">' > target/doc/index.html + run: echo '<meta http-equiv="refresh" content="0;url=occule/index.html">' > target/doc/index.html - name: Remove lock file run: rm target/doc/.lock - name: Upload artifact |