Skip to content

Commit

Permalink
#193 Required ID changes made
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 28, 2023
1 parent 9ddccca commit b1b1228
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 @@ -35,7 +35,7 @@ jobs:
uses: ./
with:
arxml_folder_path: example-arxml
ea_model_file_path: "${{steps.backupModel.outputs.reimportedEAProjectFile}}"
ea_model_file_path: "${{steps.backupEAProjectFile.outputs.reimportedEAProjectFile}}"
incquery_username: "${{ secrets.INCQUERY_USERNAME }}"
incquery_password: "${{ secrets.INCQUERY_PASSWORD }}"
license: "${{ secrets.INCQUERY_AUTOSAR_UML_INTEGRATION_LICENSE }}"
Expand All @@ -50,11 +50,11 @@ jobs:
- name: Calculate differences between the original and reimported EA projects
id: diffOutput
run: |
&'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --base '${{steps.backupModel.outputs.backupQeax}}' --theirs '${{steps.backupModel.outputs.backupQeax}}' --mine '${{steps.backupModel.outputs.currentQeax}}' --sfs "${{steps.backupModel.outputs.fileName}}-${{steps.backupModel.outputs.fileExtension}}-diff.ltsfs"
&'${{steps.GetLTA.outputs.LemonTreeAutomationExecutable}}' diff --base '${{steps.backupEAProjectFile.outputs.backupQeax}}' --theirs '${{steps.backupEAProjectFile.outputs.backupQeax}}' --mine '${{steps.backupEAProjectFile.outputs.currentQeax}}' --sfs "${{steps.backupEAProjectFile.outputs.fileName}}-${{steps.backupEAProjectFile.outputs.fileExtension}}-diff.ltsfs"
#Archive Session Files
- name: Archive Session Files
uses: actions/upload-artifact@v3
with:
name: Diff Session File
path: ${{ runner.temp }}/${{steps.backupModel.outputs.fileName}}-${{steps.backupModel.outputs.fileExtension}}-diff.ltsfs
path: ${{ runner.temp }}/${{steps.backupEAProjectFile.outputs.fileName}}-${{steps.backupEAProjectFile.outputs.fileExtension}}-diff.ltsfs
retention-days: 5

0 comments on commit b1b1228

Please sign in to comment.