Skip to content

Commit 7fe2f77

Browse files
authored
Update README.md
1 parent f183538 commit 7fe2f77

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,18 @@ Simple example:
3939
with:
4040
creds: ${{ secrets.AZURE_CREDENTIALS }}
4141

42-
# Upload `.jpg`s to Azure Blob Storage
43-
- name: Upload all JPGs to Azure Blob Storage
42+
# Upload `.png`s to Azure Blob Storage
43+
- name: Upload all PNGs to Azure Blob Storage
4444
id: upload
4545
uses: github-developer/upload-azure-blob@v1
4646
with:
4747
account: octodex
4848
destination: octocats
49-
source: '**/*.jpg'
49+
source: '**/*.png'
5050

5151
# Print out the urls to uploaded files
5252
- name: Print URLs
53-
run: echo $URLS # { ["filename":"hulatocat.jpg","url":"https://octodex.blob.core.windows.net/octocats/hulatocat.jpg"] }
53+
run: echo $URLS # { ["filename":"hulatocat.png","url":"https://octodex.blob.core.windows.net/octocats/hulatocat.png"] }
5454
env:
5555
URLS: ${{ steps.upload.outputs.urls }}
5656

@@ -61,7 +61,7 @@ Simple example:
6161

6262
- `account` (required): Storage account name, e.g. `mystorageaccount`
6363
- `destination` (required): Name of container to upload blob to, e.g. `$web` to upload a static website.
64-
- `source` (required): Path to file(s) to upload to `destination`, e.g. `.` to upload all files in the current directory. Supports globbing, e.g. `images/**.jpg`. For more information, please refer to https://www.npmjs.com/package/glob.
64+
- `source` (required): Path to file(s) to upload to `destination`, e.g. `.` to upload all files in the current directory. Supports globbing, e.g. `images/**.png`. For more information, please refer to https://www.npmjs.com/package/glob.
6565

6666
### Outputs
6767

0 commit comments

Comments
 (0)