Skip to content

Commit a3e89ea

Browse files
fix typo for CURL cmd
1 parent d8d665c commit a3e89ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_publish_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
echo "-- PKG_FILE= $PKG_FILE"
162162
for file in *$PKG_FILE*.conda; do
163163
echo "---- file= $file"
164-
curl -X DELETE https://prefix.dev/api/v1/delete/${{ inputs.channel }}/${{ inputs.platform }}/$file -H \"Authorization: Bearer ${{ secrets.api-key }}\""
164+
curl -X DELETE https://prefix.dev/api/v1/delete/${{ inputs.channel }}/${{ inputs.platform }}/$file -H "Authorization: Bearer ${{ secrets.api-key }}"
165165
done
166166
done
167167
@@ -198,5 +198,5 @@ jobs:
198198
packages='${{ steps.query_filenames.outputs.result }}'
199199
200200
echo "$packages" | jq -c '.[]' | while read filename; do
201-
curl -X DELETE https://prefix.dev/api/v1/delete/${{ inputs.channel }}/${{ inputs.platform }}/$filename -H \"Authorization: Bearer ${{ secrets.api-key }}\""
201+
curl -X DELETE https://prefix.dev/api/v1/delete/${{ inputs.channel }}/${{ inputs.platform }}/$filename -H "Authorization: Bearer ${{ secrets.api-key }}"
202202
done

0 commit comments

Comments
 (0)