Skip to content

Commit

Permalink
Use dependency variables
Browse files Browse the repository at this point in the history
  • Loading branch information
TSchmiedlechner committed Oct 19, 2021
1 parent ad2e8c5 commit 776f387
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions azure-pipelines/middleware-launcher-android-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@ stages:
- job: Cleanup
dependsOn: SmokeTest
condition: and(succeededOrFailed(), or(eq(variables['build.sourceBranch'], 'refs/heads/master'), startsWith(variables['build.sourceBranch'], 'refs/tags')))
variables:
FiskalyAdminPin: $[ dependencies.SmokeTest.outputs['setTssVariablesStep.adminPin'] ]
FiskalyTssId: $[ dependencies.SmokeTest.outputs['setTssVariablesStep.tssId'] ]
steps:
- task: PowerShell@2
inputs:
Expand All @@ -228,8 +231,8 @@ stages:
arguments: >
-FiskalyApiKey "$(TestFiskalyApiKey)"
-FiskalyApiSecret "$(TestFiskalyApiSecret)"
-TssAdminPin "$(setTssVariablesStep.adminPin)"
-TssId "$(setTssVariablesStep.tssId)"
-TssAdminPin "$(FiskalyAdminPin)"
-TssId "$(FiskalyTssId)"
displayName: 'Disable fiskaly test TSE'

- stage: ReleaseSandbox
Expand Down

0 comments on commit 776f387

Please sign in to comment.