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: Submit Clink release to winget-pkgs | |
# based off of https://github.com/microsoft/PowerToys/blob/main/.github/workflows/package-submissions.yml | |
# ... based off of https://github.com/nushell/nushell/blob/main/.github/workflows/winget-submission.yml | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
winget: | |
name: Publish winget package | |
runs-on: windows-latest | |
steps: | |
- name: Submit package to winget-pkgs | |
run: | | |
$wingetPackage = "chrisant996.Clink" | |
$gitToken = "${{ secrets.WINGET_PAT }}" | |
$targetRelease = Invoke-RestMethod -uri "https://api.github.com/repos/chrisant996/clink/releases/latest" | |
$installerUrl = $targetRelease | Select -ExpandProperty assets -First 1 | Where-Object -Property name -match 'clink.*.exe' | Select -ExpandProperty browser_download_url | |
$ver = $targetRelease.tag_name.Trim("v") | |
# getting latest wingetcreate file | |
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe | |
.\wingetcreate.exe update $wingetPackage -s -v $ver -u "$installerUrl|x86" "$installerUrl|x64" -t $gitToken |