mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 11:08:53 +02:00
ci: add support for new stable nixos-24.11 branch
This commit is contained in:
parent
a35f923d6a
commit
880a570588
2 changed files with 15 additions and 0 deletions
5
.github/workflows/build_documentation.yml
vendored
5
.github/workflows/build_documentation.yml
vendored
|
@ -57,6 +57,11 @@ jobs:
|
|||
"branch": "main",
|
||||
"nixpkgsBranch": "nixos-unstable"
|
||||
},
|
||||
{
|
||||
"branch": "nixos-24.11",
|
||||
"nixpkgsBranch": "nixos-24.11",
|
||||
"subPath": "24.11"
|
||||
},
|
||||
{
|
||||
"branch": "nixos-24.05",
|
||||
"nixpkgsBranch": "nixos-24.05",
|
||||
|
|
10
.github/workflows/update.yml
vendored
10
.github/workflows/update.yml
vendored
|
@ -14,6 +14,9 @@ on:
|
|||
type: boolean
|
||||
default: true
|
||||
description: Update generated files
|
||||
nixos-24.11:
|
||||
type: boolean
|
||||
description: Also update nixos-24.11
|
||||
nixos-24.05:
|
||||
type: boolean
|
||||
description: Also update nixos-24.05
|
||||
|
@ -43,6 +46,13 @@ jobs:
|
|||
ssh-key: ${{ secrets.CI_UPDATE_SSH_KEY }}
|
||||
|
||||
# NOTE: If additional "inputs" are added, copy this step
|
||||
- name: Update nixos-24.11
|
||||
if: inputs['nixos-24.11'] || github.event_name == 'schedule'
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
gh workflow run update.yml --ref nixos-24.11
|
||||
|
||||
- name: Update nixos-24.05
|
||||
if: inputs['nixos-24.05'] || github.event_name == 'schedule'
|
||||
env:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue