Skip to content

Update index page metadata #139

Update index page metadata

Update index page metadata #139

Workflow file for this run

name: GitHub Pages
on:
push:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build source code documentation
run: cargo doc --lib --no-deps
- name: Create redirection page
run: |
echo '<!DOCTYPE html>' > ./target/doc/index.html
echo '<html><head><meta http-equiv="refresh" content="0; url=rekee/index.html"></head></html>' >> ./target/doc/index.html
- name: Deploy source code documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc