Skip to content

Commit

Permalink
Merge pull request #8 from gungorbudak/master
Browse files Browse the repository at this point in the history
allow wildcards in path
  • Loading branch information
lambdalisue authored Jun 10, 2020
2 parents 4256a06 + 156855f commit 5be4f96
Show file tree
Hide file tree
Showing 5 changed files with 3,845 additions and 445 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
mkdir -p path/to/artifact2
echo hello > path/to/artifact1/hello.txt
echo world > path/to/artifact2/world.txt
echo hello > path/to/artifact1/hello.tsv
echo world > path/to/artifact2/world.tsv
echo hello > path/to/artifact1/hello.csv
echo world > path/to/artifact2/world.csv
- name: Basic usage
uses: ./
Expand Down Expand Up @@ -59,3 +63,11 @@ jobs:
name: '${{ matrix.os }}/azblob-upload-artifact3'
path: 'path/to/artifact1'
cleanup: 'true'

- name: Upload with path (wildcards)
uses: ./
with:
connection-string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
container: 'azblob-upload-artifact'
name: '${{ matrix.os }}/azblob-upload-artifact4'
path: 'path/**/*.+(txt|tsv)'
Loading

0 comments on commit 5be4f96

Please sign in to comment.