Skip to content

Commit

Permalink
update manifest fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
a-mnich committed May 13, 2024
1 parent f59d528 commit 64ece46
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/MassUpdateManifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Update manifests
runs-on: windows-latest
env:
WINGET_PKGS_FORK: ${{vars.WINGET_PKGS_FORK}}
WINGET_PKGS_FORK_REPO: ${{vars.WINGET_PKGS_FORK_REPO}}
WINGET_PAT: ${{secrets.WINGET_PAT}}
steps:
- name: Checkout
Expand All @@ -21,7 +21,9 @@ jobs:
- name: Checkout winget-pkgs fork
uses: actions/checkout@v4
with:
repository: ${{env.WINGET_PKGS_FORK}}
repository: ${{env.WINGET_PKGS_FORK_REPO}}
token: ${{env.WINGET_PAT}}
- name: Trigget Mass Package Update
run: ./Scripts/UpdateManifests.ps1 -PackageIdentifier ${{ github.event.inputs.PackageIdentifier }}
run: |
pwd
./Scripts/UpdateManifests.ps1 -PackageIdentifier ${{ github.event.inputs.PackageIdentifier }}

0 comments on commit 64ece46

Please sign in to comment.