diff --git a/.github/workflows/template_techdocs.yml b/.github/workflows/template_techdocs.yml index 55d548ca..db479ac0 100644 --- a/.github/workflows/template_techdocs.yml +++ b/.github/workflows/template_techdocs.yml @@ -33,7 +33,7 @@ on: required: false azure-account-name: required: false - azure-access-key: + azure-account-key: required: false jobs: @@ -57,5 +57,5 @@ jobs: aws-access-key-id: ${{ secrets.aws-access-key-id }} aws-secret-access-key: ${{ secrets.aws-secret-access-key }} azure-account-name: ${{ secrets.azure-account-name }} - azure-access-key: ${{ secrets.azure-access-key }} + azure-account-key: ${{ secrets.azure-account-key }} additional-plugins: ${{ inputs.additional-plugins }} diff --git a/README.md b/README.md index 68940e70..b03897b7 100644 --- a/README.md +++ b/README.md @@ -250,9 +250,9 @@ jobs: additional-plugins: 'mkdocs-minify-plugin\>=0.3' secrets: # optional: specifies an Azure Storage account name - azure-account-name: ${{ secrets.TECHDOCS_AWS_ACCESS_KEY_ID }} + azure-account-name: ${{ secrets.TECHDOCS_AZURE_ACCOUNT_NAME }} # optional: specifies the access key associated with the storage account - azure-access-key: ${{ secrets.TECHDOCS_AZURE_ACCESS_KEY }} + azure-account-key: ${{ secrets.TECHDOCS_AZURE_ACCESS_KEY }} ```