Skip to content

Draft attack scenarios for illustration #13

Draft attack scenarios for illustration

Draft attack scenarios for illustration #13

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v30
- uses: actions/checkout@v4
- name: Build PDF
run: |
nix build -L
cp -r --no-preserve=mode,ownership result/ dist
- name: Upload artifacts
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4