You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
2.0 KiB
42 lines
2.0 KiB
# Get a penultimate build tag
|
|
$Headers = @{
|
|
Accept = "application/vnd.github+json"
|
|
Authorization = "Bearer $env:GITHUB_TOKEN"
|
|
}
|
|
$Parameters = @{
|
|
Uri = "https://api.github.com/repos/farag2/Sophia-Script-for-Windows/releases"
|
|
Headers = $Headers
|
|
UseBasicParsing = $true
|
|
Verbose = $true
|
|
}
|
|
$Penultimate = (Invoke-RestMethod @Parameters).tag_name | Select-Object -Index 1
|
|
|
|
# Parse json for the latest script versions
|
|
$Parameters = @{
|
|
Uri = "https://raw.githubusercontent.com/farag2/Sophia-Script-for-Windows/master/sophia_script_versions.json"
|
|
UseBasicParsing = $true
|
|
Verbose = $true
|
|
}
|
|
$JSON = Invoke-RestMethod @Parameters
|
|
|
|
# Replace variables with script latest versions
|
|
# No need to replace special characters with percent-encoding ones
|
|
(Get-Content -Path ReleaseNotesTemplate.md -Encoding utf8 -Raw) | Foreach-Object -Process {
|
|
# ${{ github.ref_name }}
|
|
$_ -replace "NewVersion", $env:GITHUB_REF_NAME `
|
|
-replace "OldVersion", $Penultimate `
|
|
-replace "Sophia_Script_Windows_10_PowerShell_5_1", $JSON.Sophia_Script_Windows_10_PowerShell_5_1 `
|
|
-replace "Sophia_Script_Windows_10_PowerShell_7", $JSON.Sophia_Script_Windows_10_PowerShell_7 `
|
|
-replace "Sophia_Script_Windows_10_LTSC2019", $JSON.Sophia_Script_Windows_10_LTSC2019 `
|
|
-replace "Sophia_Script_Windows_10_LTSC2021", $JSON.Sophia_Script_Windows_10_LTSC2021 `
|
|
-replace "Sophia_Script_Windows_11_PowerShell_5_1", $JSON.Sophia_Script_Windows_11_PowerShell_5_1 `
|
|
-replace "Sophia_Script_Windows_11_PowerShell_7", $JSON.Sophia_Script_Windows_11_PowerShell_7 `
|
|
-replace "Sophia_Script_Windows_11_LTSC2024", $JSON.Sophia_Script_Windows_11_LTSC2024 `
|
|
-replace "Sophia_Script_Wrapper", $JSON.Sophia_Script_Wrapper
|
|
} | Set-Content -Path ReleaseNotesTemplate.md -Encoding utf8 -Force
|
|
|
|
# https://trstringer.com/github-actions-multiline-strings/
|
|
Add-Content -Path $env:GITHUB_OUTPUT -Value "ReleaseBody=ReleaseNotesTemplate.md"
|
|
|
|
$ReleaseName = Get-Date -f "dd.MM.yyyy"
|
|
echo "RELEASE_NAME=$ReleaseName" >> $env:GITHUB_ENV
|
|
|