Skip to content

Commit

Permalink
#193 Variable error correction
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 28, 2023
1 parent bac8e84 commit 5d3761f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
- name: Backup current model
id: backupModel
run: |
$eaFileName = 'counting-logic'
$eaFileExtension = 'qeax'
$qeaxLocation = '${{ runner.temp }}/${{eaFileName}}-old.${{eaFileExtension}}'
$currentQeaxLocation = '.\"${{eaFileName}}.${{eaFileExtension}}"'
$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
Expand Down

0 comments on commit 5d3761f

Please sign in to comment.