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: