mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 01:51:29 -07:00
16 lines
326 B
YAML
16 lines
326 B
YAML
name: Publish to Winget
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
|
|
jobs:
|
|
publish:
|
|
# Action can only be run on windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: vedantmgoyal2009/winget-releaser@v1
|
|
with:
|
|
identifier: pizzaboxer.Bloxstrap
|
|
token: ${{ secrets.WINGET_TOKEN }}
|