Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/delete_blobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ jobs:

- name: Delete web blob recursively
id: delete
uses: azure/CLI@v2
uses: azure/CLI@v3
with:
# Pin version due to bug: https://github.com/Azure/azure-cli/issues/32039
azcliversion: 2.76.0
inlineScript: |
echo "Deleting blobs in path: ${{ inputs.target }}/*"
az storage blob delete-batch \
--account-name zooniversestatic \
--source '$web' \
--pattern '${{ inputs.target }}/*' \
--dryrun
2 changes: 1 addition & 1 deletion .github/workflows/deploy_static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Upload to blob storage
id: upload
uses: azure/CLI@v2
uses: azure/CLI@v3
with:
inlineScript: |
az storage blob upload \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/purge_cache.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Purge Cache Path
id: upload
uses: azure/CLI@v2
uses: azure/CLI@v3
with:
inlineScript: |
az afd endpoint purge \
Expand Down
Loading