Skip to content

Commit

Permalink
Merge pull request #30 from rust3ds/feature/gh-pages-docs
Browse files Browse the repository at this point in the history
Fix docs publish issues
  • Loading branch information
ian-h-chamberlain authored Nov 22, 2023
2 parents 2da7285 + e9464fe commit 593ba8e
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docs
name: GitHub Pages

on:
push:
Expand All @@ -7,7 +7,7 @@ on:
workflow_dispatch:

jobs:
publish:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
steps:
Expand All @@ -20,12 +20,36 @@ jobs:

- name: Build workspace docs
run: cargo 3ds --verbose doc --verbose --no-deps --workspace
env:
# TODO: might want a custom index page ?
# https://doc.rust-lang.org/rustdoc/unstable-features.html#--index-page-provide-a-top-level-landing-page-for-docs
RUSTDOCFLAGS: "--enable-index-page"

# https://github.com/actions/upload-pages-artifact#file-permissions
- name: Fix file permissions
run: |
chmod -c -R +rX "target/armv6k-nintendo-3ds/doc" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload generated docs
uses: actions/upload-pages-artifact@v2
with:
path: ./target/armv6k-nintendo-3ds/doc

- name: Deploy GitHub pages
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 593ba8e

Please sign in to comment.