chore: apply clippy
lints for rust v1.73.0 (#507)
#250
This file contains 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: github pages | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: "0.4.8" | |
- run: mdbook build docs | |
- name: Deploy master | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/book | |
destination_dir: master | |
cname: install.fuel.network | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
if: github.ref == 'refs/heads/master' | |
- name: Get tag | |
id: branch_name | |
run: | | |
echo ::set-output name=BRANCH_NAME::${GITHUB_REF#refs/tags/} | |
if: startsWith(github.ref, 'refs/tags') | |
- name: Deploy tag | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/book | |
destination_dir: ${{ steps.branch_name.outputs.BRANCH_NAME }} | |
cname: install.fuel.network | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
if: startsWith(github.ref, 'refs/tags') | |
- name: Create latest HTML redirect file | |
if: startsWith(github.ref, 'refs/tags') | |
run: | | |
mkdir ./latest | |
cat > ./latest/index.html <<EOF | |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<meta http-equiv="refresh" content="0; URL=../${{ steps.branch_name.outputs.BRANCH_NAME }}/"> | |
<link rel="canonical" href="../${{ steps.branch_name.outputs.BRANCH_NAME }}/"> | |
EOF | |
- name: Set latest to point to tag | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./latest/ | |
destination_dir: ./latest/ | |
cname: install.fuel.network | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
if: startsWith(github.ref, 'refs/tags') |