mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
13 lines
314 B
YAML
13 lines
314 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@v2
|
|
with:
|
|
identifier: ArmCord.ArmCord
|
|
token: ${{ secrets.WINGET_TOKEN }}
|