summaryrefslogtreecommitdiff
path: root/.github/workflows/update-manual.yml
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /.github/workflows/update-manual.yml
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to '.github/workflows/update-manual.yml')
-rw-r--r--.github/workflows/update-manual.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/update-manual.yml b/.github/workflows/update-manual.yml
index 60cb362..8d2af53 100644
--- a/.github/workflows/update-manual.yml
+++ b/.github/workflows/update-manual.yml
@@ -3,25 +3,23 @@ on:
push:
branches:
- master
- paths:
- - '**.nix'
jobs:
update-manual:
- runs-on: macos-12
+ runs-on: macos-13
steps:
- name: Checkout repository
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
# So that we fetch all branches, since we need to checkout the `gh-pages` branch later.
fetch-depth: 0
- name: Install Nix
- uses: cachix/install-nix-action@v22
+ uses: cachix/install-nix-action@v30
- name: Build manual
run: |
- nix-build ./release.nix -I nixpkgs=channel:nixpkgs-23.05-darwin -I darwin=. -A manualHTML
+ nix build .#manualHTML
- name: Push update to manual
run: |