File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151
151
# Parse repository to get owner and repo names
152
152
OWNER_NAME="${GITHUB_REPOSITORY%%/*}"
153
153
REPO_NAME="${GITHUB_REPOSITORY#*/}"
154
- export GITHUB_TOKEN=${{ secrets.DAPR_BOT_TOKEN }}
154
+ export GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
155
155
echo "Uploading Dapr CLI Binaries to GitHub Release"
156
156
github-release upload \
157
157
--owner $OWNER_NAME --repo $REPO_NAME \
@@ -172,11 +172,11 @@ jobs:
172
172
- name : Update winget manifests
173
173
shell : pwsh
174
174
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"
176
176
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
177
177
if("${{ env.REL_VERSION }}".Contains("-rc.")){
178
178
$PackageIdentifier="Dapr.CLI.Preview"
179
179
} else{
180
180
$PackageIdentifier="Dapr.CLI"
181
181
}
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 }}"
You can’t perform that action at this time.
0 commit comments