mirror of
https://github.com/schollz/croc.git
synced 2025-10-10 21:01:02 +02:00
18 lines
379 B
YAML
18 lines
379 B
YAML
name: Publish to Winget
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-24.04
|
|
|
|
steps:
|
|
- name: Publish to Winget
|
|
uses: vedantmgoyal9/winget-releaser@v2
|
|
with:
|
|
identifier: schollz.croc
|
|
installers-regex: '_Windows-\w+\.zip$'
|
|
token: ${{ secrets.WINGET_TOKEN }}
|