Update README.md (#27) #70
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: Netlify Deploy | |
on: | |
push: | |
branches: | |
- 'main' | |
# permissions: | |
# contents: read | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Repository | |
uses: 'actions/checkout@v4' | |
# FIXME: Causes issue with the generated static site. | |
# - name: Format the Markdown Files With Prettier | |
# uses: 'actionsx/prettier@v2' | |
# with: | |
# args: --write "README.md" "src/**/*.md" "!src/SUMMARY.md" --prose-wrap "always" | |
- name: Setup mdBook | |
uses: extractions/setup-crate@v1 | |
with: | |
owner: rust-lang | |
name: mdbook | |
- name: Generate the Wiki | |
run: mdbook build | |
- name: Deploy to Netlify | |
uses: nwtgck/actions-netlify@v2.1 | |
with: | |
publish-dir: 'book' | |
production-branch: main | |
production-deploy: true | |
netlify-config-path: netlify.toml | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Deploy from GitHub Actions" | |
enable-pull-request-comment: false | |
enable-commit-comment: false | |
overwrites-pull-request-comment: false | |
github-deployment-environment: "Netlify Deployment" | |
github-deployment-description: "The production deployment environment on Netlify." | |
fails-without-credentials: true | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
timeout-minutes: 1 |