Skip to content

Commit 880a570

Browse files
committed
ci: add support for new stable nixos-24.11 branch
1 parent a35f923 commit 880a570

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/build_documentation.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ jobs:
5757
"branch": "main",
5858
"nixpkgsBranch": "nixos-unstable"
5959
},
60+
{
61+
"branch": "nixos-24.11",
62+
"nixpkgsBranch": "nixos-24.11",
63+
"subPath": "24.11"
64+
},
6065
{
6166
"branch": "nixos-24.05",
6267
"nixpkgsBranch": "nixos-24.05",

.github/workflows/update.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ on:
1414
type: boolean
1515
default: true
1616
description: Update generated files
17+
nixos-24.11:
18+
type: boolean
19+
description: Also update nixos-24.11
1720
nixos-24.05:
1821
type: boolean
1922
description: Also update nixos-24.05
@@ -43,6 +46,13 @@ jobs:
4346
ssh-key: ${{ secrets.CI_UPDATE_SSH_KEY }}
4447

4548
# NOTE: If additional "inputs" are added, copy this step
49+
- name: Update nixos-24.11
50+
if: inputs['nixos-24.11'] || github.event_name == 'schedule'
51+
env:
52+
GH_TOKEN: ${{ github.token }}
53+
run: |
54+
gh workflow run update.yml --ref nixos-24.11
55+
4656
- name: Update nixos-24.05
4757
if: inputs['nixos-24.05'] || github.event_name == 'schedule'
4858
env:

0 commit comments

Comments
 (0)