v0.2.3 #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # --------------------------------------------------------------- | |
| # Workflow File : pub-WinGet.yml | |
| # File Authors : YU-7 <[email protected]> | |
| # Contributors : Nul None <[email protected]> | |
| # | | |
| # Created On : <2024-12-25> | |
| # Last Modified : <2024-12-25> | |
| # | |
| # This workflow publish to winget | |
| # --------------------------------------------------------------- | |
| name: Publish to WinGet | |
| on: | |
| release: | |
| types: [released] | |
| jobs: | |
| publish: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: vedantmgoyal9/winget-releaser@main | |
| with: | |
| identifier: RubyMetric.chsrc | |
| installers-regex: '\.exe$' # Only .exe files | |
| token: ${{ secrets.WINGET_TOKEN }} |