Skip to content

Commit

Permalink
Reverted previous chages
Browse files Browse the repository at this point in the history
  • Loading branch information
joshinagesh committed Nov 8, 2023
1 parent 15846c7 commit 147fd4a
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
name: "Leap Get Environment Variables"
author: RapidCircle
description: "Get Environment Variables"
inputs:
TenantId:
description: "TenantId"
required: true
ClientId:
description: "ClientId"
required: true
ClientSecret:
description: "ClientSecret"
required: true
ServiceIdentifier:
description: "Leap Service Identifier"
required: true
HostURL:
description: "Host URL of LeapDNA Service"
required: true
outputs:
EnvironmentConfig:
description: "JSON Object of Environment Variables"
Expand All @@ -12,9 +28,9 @@ runs:
id: fetch-environment-variables
shell: pwsh
env:
HostURL: ${{ env.HostURL }}
TenantId: ${{ env.TenantId }}
ClientId: ${{ env.ClientId }}
ClientSecret: ${{ env.ClientSecret }}
ServiceIdentifier: ${{ env.ServiceIdentifier }}
HostURL: ${{ inputs.HostURL }}
TenantId: ${{ inputs.TenantId }}
ClientId: ${{ inputs.ClientId }}
ClientSecret: ${{ inputs.ClientSecret }}
ServiceIdentifier: ${{ inputs.ServiceIdentifier }}
run: ${{ github.action_path }}/script/Get-EnvironmentConfigs.ps1

0 comments on commit 147fd4a

Please sign in to comment.