wip!: cleanup workflows and point to fork repo #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs (dev) | |
on: | |
push: | |
branches: [master, github-pages] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@v3 | |
- name: set up cargo cache | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: set up nginx deps cache | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
.cache/.gnupg | |
.cache/nginx | |
.cache/*.tar.gz | |
.cache/*.tar.asc | |
.cache/*.tar.sig | |
key: ${{ runner.os }}-deps-${{ hashFiles('**/nginx-sys/build.rs') }} | |
restore-keys: ${{ runner.os }}-deps- | |
- name: build docs | |
run: cargo doc --no-deps | |
- name: create index page | |
run: echo '<meta http-equiv="refresh" content="1;url=ngx/index.html"/>' > target/doc/index.html | |
- name: upload docs artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "target/doc" | |
deploy: | |
needs: build | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v4 |