Skip to content

Commit

Permalink
Add support for Windows 2025 in GHA scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
tianon committed Dec 20, 2024
1 parent f71d6ef commit 828989b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/github-actions/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ for tag in $tags; do
{
name: .name,
os: (
if (.constraints | contains(["windowsservercore-ltsc2022"])) or (.constraints | contains(["nanoserver-ltsc2022"])) then
if (.constraints | contains(["windowsservercore-ltsc2025"])) or (.constraints | contains(["nanoserver-ltsc2025"])) then
"windows-2025"
elif (.constraints | contains(["windowsservercore-ltsc2022"])) or (.constraints | contains(["nanoserver-ltsc2022"])) then
"windows-2022"
elif (.constraints | contains(["windowsservercore-1809"])) or (.constraints | contains(["nanoserver-1809"])) then
"windows-2019"
Expand Down

0 comments on commit 828989b

Please sign in to comment.