Merge pull request #173 from ryantm/rm-3-4-doc

doc: try a slightly different format for github action
This commit is contained in:
Ryan Mulligan 2023-03-04 13:07:34 -08:00 committed by GitHub
commit 1abf0ade92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 15 deletions

View File

@ -1,34 +1,43 @@
name: doc # Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages
on: on:
# Runs on pushes targeting the default branch
push: push:
branches: branches: [$default-branch]
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs: jobs:
publish: # Single deploy job since we're just deploying
permissions: deploy:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
environment: environment:
name: github-pages name: github-pages
url: ${{ steps.deployment.outputs.page_url }} url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - name: Checkout
- uses: cachix/install-nix-action@v20 uses: actions/checkout@v3
- run: nix build .#doc
- name: Setup Pages - name: Setup Pages
uses: actions/configure-pages@v3 uses: actions/configure-pages@v3
- uses: cachix/install-nix-action@v20
- run: nix build .#doc
- name: Upload artifact - name: Upload artifact
uses: actions/upload-pages-artifact@v1 uses: actions/upload-pages-artifact@v1
with: with:
path: 'result/multi' path: './result/multi'
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
id: deployment id: deployment
uses: actions/deploy-pages@v1 uses: actions/deploy-pages@v1