v0.85.1 - Custom Program #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync to package repos | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
build: | |
if: "!github.event.release.prerelease" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
ref: chocolatey | |
- name: Config and Push | |
run: | | |
rm .git -Recurse -Force -Confirm:$false | |
$response=curl.exe -s https://api.github.com/repos/lin-ycv/everythingpowertoys/releases/latest | |
$ver = ($response | select-string '"tag_name":').Line.split("`"")[3].Trim('v') | |
$zip = ($response | Where-Object { $_ -like "*x64.zip`"" } | Select-Object -Last 1).Split("`"")[3] | |
$zipARM = ($response | Where-Object { $_ -like "*ARM64.zip`"" } | Select-Object -Last 1).Split("`"")[3] | |
$exe = ($response | Where-Object { $_ -like "*x64.exe`"" } | Select-Object -Last 1).Split("`"")[3] | |
$exeARM = ($response | Where-Object { $_ -like "*ARM64.exe`"" } | Select-Object -Last 1).Split("`"")[3] | |
$pattern = '(?s)(?<=<!--HASH-->).*?(?=<!--ENDHASH-->)' | |
$hash = (($response | select-string '"body"').Line | Select-String -Pattern $pattern | ForEach-Object { $_.Matches.Value.Trim() }).Split("\r\n") | |
$ziphash = ($hash | select-string "x64-ZIP").Line.Split('|')[1] | |
$zipARMhash = ($hash | select-string "ARM64-ZIP").Line.Split('|')[1] | |
$exehash = ($hash | select-string "x64-EXE").Line.Split('|')[1] | |
$exeARMhash = ($hash | select-string "ARM64-EXE").Line.Split('|')[1] | |
# chocolatey | |
echo $ver $zip $ziphash | |
Get-ChildItem *.* -Recurse | ForEach { (Get-Content $_) | ForEach {$_ -Replace '_VERSION_', $ver} | ForEach {$_ -Replace '_URL_', $zip} | ForEach {$_ -Replace '_CRC_', $ziphash} | Set-Content $_ } | |
if([System.IO.File]::Exists("$PWD\1")) { rm 1 } | |
choco pack | |
ls | |
choco apikey --key ${{ secrets.CHOCOLATEY }} --source https://push.chocolatey.org/ | |
choco push everythingpowertoys.$ver.nupkg --source https://push.chocolatey.org/ | |
# winget | |
$wingetPackage = "lin-ycv.EverythingPowerToys" | |
echo $wingetPackage $ver $exe $exehash $exeARM $exeARMhash | |
rm -Path .\* -Recurse -Force | |
git clone -b winget https://github.com/lin-ycv/EverythingPowerToys.git --depth 1 | |
Invoke-WebRequest https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe | |
cd .\EverythingPowerToys | |
rm .git -Recurse -Force -Confirm:$false | |
Get-ChildItem *.* -Recurse | ForEach { (Get-Content $_) | ForEach {$_ -Replace '_VERSION_', $ver} | ForEach {$_ -Replace '_URL_', $exe} | ForEach {$_ -Replace '_CRC_', $exehash} | ForEach {$_ -Replace '_armURL_', $exeARM} | ForEach {$_ -Replace '_armCRC_', $exeARMhash} | Set-Content $_ } | |
..\wingetcreate submit -p "New version: lin-ycv.EverythingPowerToys version $ver" -t ${{ secrets.EVERYTHINGPT }} . | |
# scoop | |
# cd .. | |
# git clone -b EverythingPowerToys https://github.com/lin-ycv/ScoopExtras.git --depth 1 | |
# cd .\ScoopExtras\bucket | |
# gh repo sync lin-ycv/ScoopExtras -b master | |
# git pull | |
# rm everything-powertoys.json -Force | |
# Invoke-WebRequest https://github.com/lin-ycv/EverythingPowerToys/raw/scoop/everything-powertoys.json -OutFile everything-powertoys.json | |
# (Get-Content everything-powertoys.json) | ForEach-Object {$_ -Replace '_VERSION_', $ver} | ForEach-Object {$_ -Replace '_URL_', $zip} | ForEach-Object {$_ -Replace '_CRC_', $ziphash} | ForEach-Object {$_ -Replace '_armURL_', $zipARM} | ForEach-Object {$_ -Replace '_armCRC_', $zipARMhash} | Set-Content everything-powertoys.json | |
# git add . | |
# git commit -m "everything-powertoys@$ver : update" | |
# git push -f | |
# gh repo set-default ScoopInstaller/Extras | |
# gh pr create --base master --title "everything-powertoys@$ver : update" --body "- [X] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md)." |