From caf61cd81d567d14945baad2cdf0a8b1f879c4ac Mon Sep 17 00:00:00 2001 From: Alisue Date: Tue, 10 Oct 2023 14:14:28 +0900 Subject: [PATCH] Add CI test to confirm if existing directory cause issue Refer #22 --- .github/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b46e97..6ea3906 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -35,6 +35,22 @@ jobs: test -f azblob-download-artifact/World.txt test -f azblob-download-artifact/path/to/nested/Hello.txt + - name: Basic usage (again) + uses: ./ + with: + connection-string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }} + name: 'azblob-download-artifact' + + - name: Confirm + shell: bash + run: | + find ./azblob-download-artifact + echo "-----------------------------------" + test -d azblob-download-artifact + test -f azblob-download-artifact/Hello.txt + test -f azblob-download-artifact/World.txt + test -f azblob-download-artifact/path/to/nested/Hello.txt + - name: Download to a specific path uses: ./ with: