constellation/.github/actions/login_azure/action.yml
2024-02-21 17:53:53 +01:00

16 lines
481 B
YAML

name: Azure login
description: "Login to Azure & configure az CLI."
inputs:
azure_credentials:
description: "Credentials authorized to create Constellation on Azure."
required: true
runs:
using: "composite"
steps:
# As described at:
# https://github.com/Azure/login#configure-deployment-credentials
- name: Login to Azure
uses: azure/login@cb79c773a3cfa27f31f25eb3f677781210c9ce3d # v1.6.1
with:
creds: ${{ inputs.azure_credentials }}