Skip to content

Commit

Permalink
#193 Download the session file
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 21, 2023
1 parent bc1ca59 commit a593738
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,21 @@ jobs:
id: GetLTA
with:
License: ${{secrets.LTALICENSE}}
#Download
- name: Download base-commit file
id: baseDownload
echo "result=downloaded" >> $env:GITHUB_OUTPUT
#Archive Session Files
- name: Archive Session Files
if: steps.baseDownload.outputs.result == 'downloaded'
uses: actions/upload-artifact@v3
with:
name: Review Session File
path: log.ltsfs
retention-days: 5
#Diff Check between the modified files
- name: DiffCheck
run: |
$output = &'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --theirs A.eapx --mine B.eapx --sfs log.txt
$output = &'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --theirs A.eapx --mine B.eapx --sfs log.ltsfs
echo $output

0 comments on commit a593738

Please sign in to comment.