From a266fe0177e0500efbe54f1419711036595b304d Mon Sep 17 00:00:00 2001 From: Johnny Shaw Date: Wed, 23 Oct 2024 20:27:12 -0600 Subject: [PATCH] fix winget token in workflow --- .github/workflows/publish-winget-canary.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-winget-canary.yml b/.github/workflows/publish-winget-canary.yml index 63dcbd9..5ea8a65 100644 --- a/.github/workflows/publish-winget-canary.yml +++ b/.github/workflows/publish-winget-canary.yml @@ -12,7 +12,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Publish winget manifest - run: .\winget\Publish.ps1 -Channel Canary -Version Latest -Output .\winget\ -Submit {{ secrets.WINGET_TOKEN }} + run: .\winget\Publish.ps1 -Channel Canary -Version Latest -Output .\winget\ -Submit ${{ secrets.WINGET_TOKEN }} - name: Update winget manifest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}