Skip to content

Update canary winget manifest #2

Update canary winget manifest

Update canary winget manifest #2

name: Update canary winget manifest
on:
workflow_dispatch:
release:
types: [published]
jobs:
winget:
name: Update winget manifest
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.PUSH_TOKEN }}
ref: main
- name: Generate winget manifest
run: .\winget\Publish.ps1 -Channel Canary -Version Latest -Output .\winget\
- name: Update winget manifest
run: |
git config user.name "Johnny Shaw"
git config user.email johnny.shaw@live.com
git add .
git commit -m "update winget manifest"
git push