mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
14 lines
318 B
YAML
14 lines
318 B
YAML
|
name: Publish to WinGet
|
||
|
on:
|
||
|
release:
|
||
|
types: [released]
|
||
|
|
||
|
jobs:
|
||
|
publish:
|
||
|
runs-on: windows-latest # Action can only be run on windows
|
||
|
steps:
|
||
|
- uses: vedantmgoyal2009/winget-releaser@latest
|
||
|
with:
|
||
|
identifier: ArmCord.ArmCord
|
||
|
token: ${{ secrets.WINGET_TOKEN }}
|