Update Winget #53
This file contains 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
name: Update Winget | |
on: | |
workflow_dispatch: | |
push: | |
branches: ['main'] | |
paths: ['JSON/*.json'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out repo | |
uses: actions/checkout@v3 | |
- name: read p81 json | |
id: app1 | |
uses: RadovanPelka/[email protected] | |
with: | |
path: "JSON/perimeter81.json" | |
- name: Run Komac - p81 | |
uses: michidk/[email protected] | |
with: | |
args: 'update ${{ steps.app1.outputs.package_id }} -v ${{ steps.app1.outputs.version_number }} --urls ${{ steps.app1.outputs.msi_url }} --submit --token ${{ secrets.GH_TOKEN }}' |