Skip to content

Update bracex 3.0 -> 3.0.1 #59

Update bracex 3.0 -> 3.0.1

Update bracex 3.0 -> 3.0.1 #59

Workflow file for this run

name: Deploy Docs
on:
workflow_dispatch:
push:
branches:
- main
permissions: {}
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
persist-credentials: false
- uses: ./.github/actions/setup-nix
- run: nix build '.#docs'
- name: Upload artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5
with:
path: ./result/
deploy:
needs: build
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5