Skip to content

Commit

Permalink
#193 TrytRY
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 27, 2023
1 parent e11de1d commit 7fe634c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
id: backupModel
run: |
$qeaxLocation = '${{ runner.temp }}/counting-logic-old.qeax'
$currentQeaxLocation = './counting-logic.qeax'
$currentQeaxLocation = '.\counting-logic.qeax'
Copy-Item -Path $currentQeaxLocation -Destination $qeaxLocation
echo "backupQeax=$qeaxLocation" >> $env:GITHUB_OUTPUT
echo "currentQeax=$currentQeaxLocation" >> $env:GITHUB_OUTPUT
Expand All @@ -31,7 +31,7 @@ jobs:
uses: ./
with:
arxml_folder_path: example-arxml
ea_model_file_path: counting-logic.qeax
ea_model_file_path: "${{steps.backupModel.outputs.currentQeax}}"
incquery_username: "${{ secrets.INCQUERY_USERNAME }}"
incquery_password: "${{ secrets.INCQUERY_PASSWORD }}"
license: "${{ secrets.INCQUERY_AUTOSAR_UML_INTEGRATION_LICENSE }}"
Expand All @@ -46,7 +46,7 @@ jobs:
- name: DiffCheck
id: diffOutput
run: |
$output = &'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --base ${{steps.backupModel.outputs.backupQeax}} --theirs ${{steps.backupModel.outputs.backupQeax}} --mine ${{steps.backupModel.outputs.currentQeax}} --sfs log.ltsfs
$output = &'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --base '${{steps.backupModel.outputs.backupQeax}}' --theirs '${{steps.backupModel.outputs.backupQeax}}' --mine '${{steps.backupModel.outputs.currentQeax}}' --sfs log.ltsfs
echo "result=$output" >> $env:GITHUB_OUTPUT
#Archive Session Files
- name: Archive Session Files
Expand Down

0 comments on commit 7fe634c

Please sign in to comment.