aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/winget.yml
blob: ef9561cf1d84cd8918969d81b2be06e3c62c5490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Publish to WinGet
on:
  release:
    types: [released]

jobs:
  publish:
    runs-on: windows-latest
    steps:
      - uses: vedantmgoyal2009/winget-releaser@v1
        with:
          identifier: PrismLauncher.PrismLauncher
          version: ${{ github.event.release.tag_name }}
          installers-regex: 'PrismLauncher-Windows-MSVC(:?-arm64|-Legacy)?-Setup-.+\.exe$'
          token: ${{ secrets.WINGET_TOKEN }}