mirror of
https://github.com/nushell/nushell.git
synced 2024-11-12 19:44:42 +01:00
20 lines
758 B
YAML
20 lines
758 B
YAML
name: Submit Nushell package to Windows Package Manager Community Repository
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
|
|
winget:
|
|
name: Publish winget package
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: Submit package to Windows Package Manager Community Repository
|
|
run: |
|
|
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
|
|
$github = Get-Content '${{ github.event_path }}' | ConvertFrom-Json
|
|
$installerUrl = $github.release.assets | Where-Object -Property name -match 'windows.msi' | Select -ExpandProperty browser_download_url -First 1
|
|
.\wingetcreate.exe update Nushell.Nushell -s -v $github.release.tag_name -u $installerUrl -t ${{ secrets.NUSHELL_PAT }}
|