Skip to content

Commit

Permalink
Merge pull request #112 from infosiftr/windows-2025
Browse files Browse the repository at this point in the history
Add support for Windows 2025 in GHA scripts
  • Loading branch information
tianon authored Jan 8, 2025
2 parents f4bda73 + 828989b commit 9939a32
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 9939a32

Please sign in to comment.