Skip to content

Commit

Permalink
#193 Extended wit another variable
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 27, 2023
1 parent 84f87fb commit 03d48c0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ jobs:
id: backupModel
run: |
$qeaxLocation = '${{ runner.temp }}/counting-logic-old.qeax'
Copy-Item -Path ./counting-logic.qeax -Destination $qeaxLocation
$currentQeaxLocation = './counting-logic.qeax'
Copy-Item -Path $currentQeax -Destination $qeaxLocation
echo "backupQeax=qeaxLocation" >> $env:GITHUB_OUTPUT
echo "currentQeax=currentQeaxLocation" >> $env:GITHUB_OUTPUT
- name: Run IncQuery AUTOSAR-UML Bridge
uses: ./
Expand All @@ -44,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 counting-logic.qeax --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 03d48c0

Please sign in to comment.