2021-10-06 12:43:18 -07:00
|
|
|
name: Winget
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: 'The latest version'
|
|
|
|
required: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
runs-on: windows-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: pwsh
|
|
|
|
working-directory: ${{ github.workspace }}/packages/winget
|
|
|
|
env:
|
|
|
|
WINGETCREATE_TOKEN: ${{ secrets.WINGETCREATE_TOKEN }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout code 👋
|
2023-10-17 17:28:25 -07:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
2021-10-06 12:43:18 -07:00
|
|
|
- name: Create manifest and submit PR 📦
|
|
|
|
run: |
|
2021-11-25 02:06:33 -08:00
|
|
|
./build.ps1 -Version "${{ github.event.inputs.version }}" -Token $env:WINGETCREATE_TOKEN
|