diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-09 01:16:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 01:16:07 +0200 |
commit | f591c876650385423d205d40350a210098c86751 (patch) | |
tree | b8041a6e168954ef3ac68482913b9700aa2ffeb5 /.github | |
parent | e6fe701727268a5c2284fec2867c0a9bfe10b1aa (diff) | |
parent | 2bba64fe3a0509251c6a197dba4eb503ea0f20a7 (diff) | |
download | PrismLauncher-f591c876650385423d205d40350a210098c86751.tar.gz PrismLauncher-f591c876650385423d205d40350a210098c86751.tar.bz2 PrismLauncher-f591c876650385423d205d40350a210098c86751.zip |
Merge pull request #851 from russellbanks/patch-1
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/winget.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml new file mode 100644 index 00000000..b8ecce13 --- /dev/null +++ b/.github/workflows/winget.yml @@ -0,0 +1,14 @@ +name: Publish to WinGet +on: + release: + types: [released] + +jobs: + publish: + runs-on: windows-latest + steps: + - uses: vedantmgoyal2009/winget-releaser@latest + with: + identifier: PolyMC.PolyMC + installers-regex: '\.exe$' + token: ${{ secrets.WINGET_TOKEN }} |