Skip to content

Commit a032d5d

Browse files
committed
using my personal token
Signed-off-by: Shivam Kumar <shivamkm07@gmail.com>
1 parent f028e86 commit a032d5d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dapr_cli.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
# Parse repository to get owner and repo names
152152
OWNER_NAME="${GITHUB_REPOSITORY%%/*}"
153153
REPO_NAME="${GITHUB_REPOSITORY#*/}"
154-
export GITHUB_TOKEN=${{ secrets.DAPR_BOT_TOKEN }}
154+
export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
155155
echo "Uploading Dapr CLI Binaries to GitHub Release"
156156
github-release upload \
157157
--owner $OWNER_NAME --repo $REPO_NAME \
@@ -172,11 +172,11 @@ jobs:
172172
- name: Update winget manifests
173173
shell: pwsh
174174
run: |
175-
$url = "https://github.com/dapr/cli/releases/download/v${{ env.REL_VERSION }}/dapr.msi"
175+
$url = "https://github.com/shivamkm07/cli/releases/download/v${{ env.REL_VERSION }}/dapr.msi"
176176
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
177177
if("${{ env.REL_VERSION }}".Contains("-rc.")){
178178
$PackageIdentifier="Dapr.CLI.Preview"
179179
} else{
180180
$PackageIdentifier="Dapr.CLI"
181181
}
182-
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.DAPR_BOT_TOKEN }}"
182+
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.GITHUB_TOKEN }}"

0 commit comments

Comments
 (0)