Skip to content

Commit

Permalink
Parallelize file deletion (#70)
Browse files Browse the repository at this point in the history
Parallelize file deletion
  • Loading branch information
justinh-rahb authored Aug 22, 2023
1 parent 20cdc68 commit 2864a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gcp-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Delete Existing Bucket
run: |
if gsutil ls "gs://$GCS_BUCKET_NAME"; then
gsutil rm -r "gs://$GCS_BUCKET_NAME"
gsutil -m rm -r "gs://$GCS_BUCKET_NAME"
fi
env:
GCS_BUCKET_NAME: ${{ secrets.GCS_BUCKET_NAME }}
Expand Down

0 comments on commit 2864a1d

Please sign in to comment.