mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2026-08-24 02:34:19 -05:00
chore: update Windows SDK version
This commit is contained in:
@@ -52,7 +52,7 @@ jobs:
|
||||
env:
|
||||
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
|
||||
run: |
|
||||
./pre.ps1 -Version ${{ needs.changelog.outputs.version }}
|
||||
./pre.ps1 -Version ${{ needs.changelog.outputs.version }} -SDKVersion "10.0.26100.0"
|
||||
- name: Run GoReleaser 🚀
|
||||
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a
|
||||
with:
|
||||
@@ -103,7 +103,7 @@ jobs:
|
||||
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||
run: |
|
||||
$version = '${{ needs.changelog.outputs.version }}'.TrimStart("v")
|
||||
./build.ps1 -Architecture ${{ matrix.arch }} -Version $version -Copy -Sign
|
||||
./build.ps1 -Architecture ${{ matrix.arch }} -Version $version -Copy -Sign -SDKVersion "10.0.26100.0"
|
||||
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
|
||||
with:
|
||||
name: msi-artifact-${{ matrix.arch }}
|
||||
|
||||
+2
-2
@@ -4,7 +4,7 @@ Param
|
||||
$Version,
|
||||
[parameter(Mandatory = $false)]
|
||||
[string]
|
||||
$SDKVersion = "10.0.22621.0"
|
||||
$SDKVersion = "10.0.26100.0"
|
||||
)
|
||||
|
||||
git config --global user.name "GitHub Actions"
|
||||
@@ -21,7 +21,7 @@ Write-Output "SHA_SIGNING_KEY_LOCATION=$shaSigningKeyLocation" | Out-File -FileP
|
||||
nuget.exe install Microsoft.Trusted.Signing.Client -Version 1.0.92 -ExcludeVersion -OutputDirectory $env:RUNNER_TEMP
|
||||
Write-Output "SIGNTOOLDLIB=$env:RUNNER_TEMP/Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||
|
||||
# requires Windows Dev Kit 10.0.22621.0
|
||||
# requires Windows Dev Kit 10.0.26100.0
|
||||
$signtool = "C:/Program Files (x86)/Windows Kits/10/bin/$SDKVersion/x64/signtool.exe"
|
||||
Write-Output "SIGNTOOL=$signtool" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ Param
|
||||
$Version,
|
||||
[parameter(Mandatory = $false)]
|
||||
[string]
|
||||
$SDKVersion = "10.0.22621.0",
|
||||
$SDKVersion = "10.0.26100.0",
|
||||
[switch]$Sign,
|
||||
[switch]$Copy
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user