File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1616 description : The name of the package from the artifact to deploy.
1717 required : true
1818 type : string
19+ appNameEnvVar :
20+ description : The name of the environment variable that contains the Azure Function app name.
21+ required : true
22+ type : string
23+ publishProfileSecret :
24+ description : The name of the secret that contains the Azure Function publish profile.
25+ required : true
26+ type : string
1927
2028jobs :
2129 deploy :
3240 uses : Azure/functions-action@v1
3341 id : fa
3442 with :
35- app-name : ${{ vars[inputs.appName ] || env[inputs.appName ] }}
43+ app-name : ${{ vars[inputs.appNameEnvVar ] || env[inputs.appNameEnvVar ] }}
3644 publish-profile : ${{ secrets[inputs.publishProfileSecret] }}
3745 package : ' ./${{ inputs.artifactName }}/${{ inputs.packageName }}'
You can’t perform that action at this time.
0 commit comments