From 1d8cf08f8fc03ffc4415e095839a9170e97a303c Mon Sep 17 00:00:00 2001 From: Koltai Kadosa Date: Wed, 20 Sep 2023 13:38:18 +0200 Subject: [PATCH] ARUMLPD-34 Weird things --- action.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/action.yml b/action.yml index e661212..77bb5e8 100644 --- a/action.yml +++ b/action.yml @@ -87,14 +87,10 @@ runs: $installResult = Start-Process -FilePath '${{ steps.is-iqs-aub-installed.outputs.installer_path }}' -ArgumentList @("/install", "/quiet") -Wait -PassThru exit $installResult.ExitCode - - name: Create the license file + - name: Run the IncQuery AUTOSAR-UML Bridge shell: pwsh run: | echo '${{ inputs.license }}' | Out-File -FilePath '${{ runner.temp }}/IncQueryAUB.lic' echo 'licenseFilePath: IncQueryAUB.lic' | Out-File -FilePath '${{ runner.temp }}/IncQueryAUBLic.yaml' - - - name: Run the IncQuery AUTOSAR-UML Bridge - shell: pwsh - run: | $env:ARUML_HOME = 'C:\Program Files\IncQuery Labs\IncQuery AUTOSAR-UML Bridge\Transformation\' & 'C:\Program Files\IncQuery Labs\IncQuery AUTOSAR-UML Bridge\CLI\iql-aub-cli.exe' -i='${{ inputs.arxml_file_path }}' -e='${{ inputs.ea_model_file_path }}' -l='${{ runner.temp }}/IncQueryAUBLic.yaml'