File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1- FROM python:3.10
1+ FROM mcr.microsoft.com/azure-cli
22
33LABEL "com.github.actions.name" ="azure-blob-storage-upload"
44LABEL "com.github.actions.description" ="Uploads assets to Azure Blob Storage"
55LABEL "com.github.actions.icon" ="box"
66LABEL "com.github.actions.color" ="green"
77LABEL "repository" ="https://github.com/bacongobbler/azure-blob-storage-upload"
88LABEL "homepage" ="https://github.com/bacongobbler/azure-blob-storage-upload"
9- LABEL "maintainer" ="Matthew Fisher <matt.fisher@microsoft.com >"
9+ LABEL "maintainer" ="Matthew Fisher <matt.fisher@fishworks.io >"
1010
1111ADD entrypoint.sh /entrypoint.sh
1212RUN chmod +x entrypoint.sh
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ branding:
55 icon : " box"
66 color : " green"
77inputs :
8- cli_version :
9- description : " If set, specifies the version of the Azure CLI to install. Defaults to latest"
10- required : false
118 connection_string :
129 description : " The connection string for the storage account. Used if value is set. Either connection_string or sas_token must be supplied"
1310 required : false
Original file line number Diff line number Diff line change @@ -50,7 +50,4 @@ if [[ -n ${INPUT_CLI_VERSION} ]]; then
5050 CLI_VERSION=" ==${INPUT_CLI_VERSION} "
5151fi
5252
53- # install the azure cli
54- pip install azure-cli${CLI_VERSION}
55-
5653az storage blob ${VERB} ${CONNECTION_METHOD} --source ${INPUT_SOURCE_DIR} ${CONTAINER_NAME_FLAG} ${INPUT_CONTAINER_NAME} ${ARG_OVERWRITE} ${EXTRA_ARGS}
You can’t perform that action at this time.
0 commit comments