Skip to content

Commit

Permalink
Update doc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nrybowski authored Nov 25, 2024
1 parent 0197fb7 commit 708d4c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: Documentation

# Controls when the workflow will run
on:
Expand All @@ -12,13 +12,13 @@ on:
workflow_dispatch:

jobs:
build:
build_doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build documentation
id: build
run: cargo doc
run: cargo +nightly doc
- name: Upload documentation
id: deploy
uses: actions/upload-pages-artifact@v3
Expand All @@ -29,7 +29,7 @@ jobs:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
needs: build_doc
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down

0 comments on commit 708d4c2

Please sign in to comment.