v0.80.0 #4
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/checkout@v3 | |
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 "*.zip`"" } | Select-Object -Last 1).Split("`"")[3] | |
$exe = ($response | Where-Object { $_ -like "*.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 "ZIP").Line.Split('|')[1] | |
$exehash = ($hash | select-string "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 | |
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} | Set-Content $_ } | |
..\wingetcreate submit -p "New version: lin-ycv.EverythingPowerToys version $ver" -t ${{ secrets.GITHUB_TOKEN }} . | |
# scoop # takes too long to get approvaed, impractical to implement | |
# cd .. | |
# rm -Path .\* -Recurse -Force | |
# git clone -b EverythingPowerToys https://github.com/lin-ycv/ScoopExtras.git --depth 1 | |
# cd .\bucket | |
# rm EverythingPowerToys.json -Force | |
# Invoke-WebRequest https://github.com/lin-ycv/EverythingPowerToys/raw/scoop/EverythingPowerToys.json -OutFile EverythingPowerToys.json | |
# (Get-Content EverythingPowerToys.json) | ForEach-Object {$_ -Replace '_VERSION_', $ver} | ForEach-Object {$_ -Replace '_URL_', $zip} | ForEach-Object {$_ -Replace '_CRC_', $ziphash} | Set-Content EverythingPowerToys.json | |
# git add . | |
# git commit -m "EverythingPowerToys@$ver: Update" | |
# git push -f | |
# gh pr create --base main --head EverythingPowerToys --title "EverythingPowerToys@$ver: Update" --body "- [X] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md).`r`n`r`n/verify" |