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 \
@@ -174,11 +174,11 @@ jobs:
174
174
- name : Update winget manifests
175
175
shell : pwsh
176
176
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"
178
178
iwr https://github.com/microsoft/winget-create/releases/download/v${{ env.WINGETCREATE_VERSION }}/wingetcreate.exe -OutFile wingetcreate.exe
179
179
if("${{ env.REL_VERSION }}".Contains("-rc.")){
180
180
$PackageIdentifier="Dapr.CLI.Preview"
181
181
} else{
182
182
$PackageIdentifier="Dapr.CLI"
183
183
}
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 }}"
You can’t perform that action at this time.
0 commit comments