From 4377f58da7617770abdcce5c4377d05809ee9876 Mon Sep 17 00:00:00 2001 From: Aaron Robinson Date: Mon, 20 Dec 2021 15:17:06 -0600 Subject: [PATCH] Fix NuGet publish --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2c8f8a7..af3760c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -16,9 +16,9 @@ jobs: - name: Fetch Latest .nupkg uses: dsaltares/fetch-gh-release-asset@0efe227dedb360b09ea0e533795d584b61c461a9 with: - token: "{{ secrets.GITHUB_TOKEN }}" - version: "tags/${{ env.GITHUB_REF_NAME }}" - file: "tcli.${{ env.GITHUB_REF_NAME }}.nupkg" + token: "${{ secrets.GITHUB_TOKEN }}" + version: "tags/${{ github.ref_name }}" + file: "tcli.${{ github.ref_name }}.nupkg" target: "tcli.nupkg"