Skip to content

Commit

Permalink
test_as_action: try better storage cleanup + list
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyCat committed Aug 29, 2024
1 parent de40106 commit 31f21a1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,16 @@ jobs:
az storage blob delete-batch \
--account-name packageskaitai \
--source test3 \
--pattern "*" \
--pattern '*' \
--sas-token ${{ secrets.TEST_AZURE_STORAGE_SAS_TOKEN }}
- name: List Az Storage container
uses: azure/CLI@v1
with:
inlineScript: |
az storage blob list \
--account-name packageskaitai \
-c test3 \
--output table \
--sas-token ${{ secrets.TEST_AZURE_STORAGE_SAS_TOKEN }}
- name: Run action - create repo from scratch
uses: ./ # Uses an action in the root directory
Expand Down

0 comments on commit 31f21a1

Please sign in to comment.