mirror of
https://github.com/FranP-code/ChatGPT.git
synced 2025-10-13 00:13:25 +00:00
21 lines
473 B
YAML
21 lines
473 B
YAML
name: Winget CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
# # Sequence of patterns matched against refs/tags
|
|
# tags:
|
|
# - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
|
|
|
jobs:
|
|
publish-winget:
|
|
# Action can only be run on windows
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: vedantmgoyal2009/winget-releaser@v1
|
|
with:
|
|
identifier: lencx.ChatGPT
|
|
token: ${{ secrets.WINGET_TOKEN }}
|
|
version: ${{ env.version }}
|