Skip to content

Commit

Permalink
#193 Review changes with variables
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 27, 2023
1 parent 9af04df commit 05d3d3a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ jobs:
uses: actions/checkout@v3

- name: Backup current model
id: backupModelPath
run: |
Copy-Item -Path ./counting-logic.qeax -Destination '${{ runner.temp }}/counting-logic-old.qeax'
$qeaxLocation = '${{ runner.temp }}/counting-logic-old.qeax'
Copy-Item -Path ./counting-logic.qeax -Destination $qeaxLocation
echo "backupQeax=qeaxLocation" >> $env:GITHUB_OUTPUT
- name: Run IncQuery AUTOSAR-UML Bridge
uses: ./
Expand All @@ -38,10 +41,12 @@ jobs:
with:
License: ${{secrets.LTALICENSE}}
#Diff Check between the modified files
- name: DiffCheck
- name: DiffCheck
id: diffOutput
if: steps.backupModelPath.outputs.backupQeax == 'counting-logic-old.qeax'
run: |
$output = &'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --base counting-logic-old.qeax --theirs counting-logic-old.qeax --mine counting-logic.qeax --sfs log.ltsfs
echo $output
echo "result=output" >> $env:GITHUB_OUTPUT
#Archive Session Files
- name: Archive Session Files
uses: actions/upload-artifact@v3
Expand Down
Binary file removed A.eap
Binary file not shown.
Binary file removed B.eap
Binary file not shown.
Binary file removed Base.eap
Binary file not shown.

0 comments on commit 05d3d3a

Please sign in to comment.