Skip to content

Commit

Permalink
Add a deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ruuda committed May 22, 2024
1 parent f245e93 commit 3358783
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy

"on":
workflow_dispatch: {}
push:
branches: ["master"]

jobs:
Build:
runs-on: ubuntu-latest

# Ask for a token with the right permissions to publish. It would be slightly
# safer to split into two jobs, so the untrusted mdBook binary does not have
# access to the token, but the worst you can do is deface the webpage which
# a malicious mdBook could do anyway, so we keep the workflow simple.
permissions:
contents: read
pages: write
id-token: write

steps:
- uses: actions/checkout@v4

- name: Install mdBook
run: |
curl -sSL "https://github.com/rust-lang/mdBook/releases/download/$(cat mdbook-version)/mdbook-$(cat mdbook-version)-x86_64-unknown-linux-gnu.tar.gz" | tar -xz
- name: Build and test the book
run: |
./mdbook build
./mdbook test
- name: Upload artifact
uses: actions/upload-pages-artifact@v3.0.1
with:
path: "book"

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.5

0 comments on commit 3358783

Please sign in to comment.