This downloads artifacts from Azure Blob Storage. It follows usage of actions/download-artifact for easy migration.
See also azblob-upload-artifact.
Get Azure Storage connection strings and specify it to connection-string
through Github secrets like:
steps:
- uses: actions/checkout@v4
- uses: fixpoint/azblob-download-artifact@v3
with:
connection-string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
name: my-artifact
-run: cat my-artifact
Download to specific directory:
steps:
- uses: actions/checkout@v4
- uses: fixpoint/azblob-download-artifact@v3
with:
connection-string: ${{ secrets.AZURE_STORAGE_CONNECTION_STRING }}
name: my-artifact
path: path/to/artifact
- run: cat path/to/artifact
See action.yml for more detail.
This scripts and documentation in this project are released under the MIT License.