Skip to content

Commit 57819e7

Browse files
committed
Test tokens
Signed-off-by: shivam <shivamkm07@gmail.com>
1 parent f2e6b83 commit 57819e7

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 \
@@ -174,11 +174,11 @@ jobs:
174174
- name: Update winget manifests
175175
shell: pwsh
176176
run: |
177-
$url = "https://github.com/dapr/cli/releases/download/v${{ env.REL_VERSION }}/dapr.msi"
177+
$url = "https://github.com/shivamkm07/cli/releases/download/v${{ env.REL_VERSION }}/dapr.msi"
178178
iwr https://github.com/microsoft/winget-create/releases/download/v${{ env.WINGETCREATE_VERSION }}/wingetcreate.exe -OutFile wingetcreate.exe
179179
if("${{ env.REL_VERSION }}".Contains("-rc.")){
180180
$PackageIdentifier="Dapr.CLI.Preview"
181181
} else{
182182
$PackageIdentifier="Dapr.CLI"
183183
}
184-
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.DAPR_BOT_TOKEN }}"
184+
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.OTHER_TOKEN }}"

0 commit comments

Comments
 (0)