Skip to content

tests-e2e: Drop app template special platform-cli version #13

tests-e2e: Drop app template special platform-cli version

tests-e2e: Drop app template special platform-cli version #13

Workflow file for this run

name: Deploy Docs
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- run: nix build '.#docs'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./result/
deploy:
needs: build
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@v4