mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-27 19:18:57 +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",
|
"branch": "main",
|
||||||
"nixpkgsBranch": "nixos-unstable"
|
"nixpkgsBranch": "nixos-unstable"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"branch": "nixos-24.11",
|
||||||
|
"nixpkgsBranch": "nixos-24.11",
|
||||||
|
"subPath": "24.11"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"branch": "nixos-24.05",
|
"branch": "nixos-24.05",
|
||||||
"nixpkgsBranch": "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
|
type: boolean
|
||||||
default: true
|
default: true
|
||||||
description: Update generated files
|
description: Update generated files
|
||||||
|
nixos-24.11:
|
||||||
|
type: boolean
|
||||||
|
description: Also update nixos-24.11
|
||||||
nixos-24.05:
|
nixos-24.05:
|
||||||
type: boolean
|
type: boolean
|
||||||
description: Also update nixos-24.05
|
description: Also update nixos-24.05
|
||||||
|
@ -43,6 +46,13 @@ jobs:
|
||||||
ssh-key: ${{ secrets.CI_UPDATE_SSH_KEY }}
|
ssh-key: ${{ secrets.CI_UPDATE_SSH_KEY }}
|
||||||
|
|
||||||
# NOTE: If additional "inputs" are added, copy this step
|
# 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
|
- name: Update nixos-24.05
|
||||||
if: inputs['nixos-24.05'] || github.event_name == 'schedule'
|
if: inputs['nixos-24.05'] || github.event_name == 'schedule'
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue