Skip to content

Commit 6bc4b1e

Browse files
authored
fix: use windows-2025 in release job (#136)
1 parent f566547 commit 6bc4b1e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ permissions:
1717

1818
jobs:
1919
release:
20-
runs-on: ${{ github.repository_owner == 'coder' && 'windows-latest-16-cores' || 'windows-latest' }}
20+
# windows-2025 is required for an up-to-date version of OpenSSL for the
21+
# appcast generation.
22+
runs-on: ${{ github.repository_owner == 'coder' && 'windows-2025-16-cores' || 'windows-2025' }}
2123
outputs:
2224
version: ${{ steps.version.outputs.VERSION }}
2325
timeout-minutes: 15

0 commit comments

Comments
 (0)