Initial commit

This commit is contained in:
Microsoft GitHub User
2019-09-25 01:50:19 -07:00
committed by Sumiran Aggarwal
commit 571e3ac4e7
11 changed files with 869 additions and 0 deletions

13
action.yml Normal file
View File

@@ -0,0 +1,13 @@
# Login to Azure subscription
name: 'Azure Login'
description: 'Azure Login wraps the az login, allowing Azure actions to log into Azure or to run Az CLI scripts.'
inputs:
creds:
description: 'Paste output of `az ad sp create-for-rbac` as value of secret variable: AZURE_CREDENTIALS'
required: true
branding:
icon: 'login.svg'
color: 'blue'
runs:
using: 'node12'
main: 'lib/main.js'