Skip to content

Commit

Permalink
#193 Variable problem with syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 28, 2023
1 parent 4f4ab8c commit 1c28296
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
- name: Backup current model
id: backupModel
run: |
$ea_filename = '${{counting-logic}}'
$ea_fileextension = '${{qeax}}'
$qeaxLocation = '${{ runner.temp }}/${{ea_filename}}-old.${{ea_fileextension}}'
$currentQeaxLocation = '.\"${{ea_filename}}.${{ea_fileextension}}"'
$eaFileName = "counting-logic"
$eaFileExtension = "qeax"
$qeaxLocation = '${{ runner.temp }}/${{eaFileName}}-old.${{eaFileExtension}}'
$currentQeaxLocation = '.\"${{eaFileName}}.${{eaFileExtension}}"'
Copy-Item -Path $currentQeaxLocation -Destination $qeaxLocation
echo "backupQeax=$qeaxLocation" >> $env:GITHUB_OUTPUT
echo "currentQeax=$currentQeaxLocation" >> $env:GITHUB_OUTPUT
echo "filename=$ea_filename" >> $env:GITHUB_OUTPUT
echo "fileextension=$ea_fileextension" >> $env:GITHUB_OUTPUT
echo "fileName=$eaFileName" >> $env:GITHUB_OUTPUT
echo "fileExtension=$eaFileExtension" >> $env:GITHUB_OUTPUT
- name: Run IncQuery AUTOSAR-UML Bridge
uses: ./
Expand All @@ -50,7 +50,7 @@ jobs:
- name: DiffCheck
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.backupModel.outputs.backupQeax}}' --theirs '${{steps.backupModel.outputs.backupQeax}}' --mine '${{steps.backupModel.outputs.currentQeax}}' --sfs "${{steps.backupModel.outputs.fileName}}-${{steps.backupModel.outputs.fileExtension}}-diff.ltsfs"
#Archive Session Files
- name: Archive Session Files
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 1c28296

Please sign in to comment.