Skip to content

Commit

Permalink
#193 String concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikkoczka7 committed Sep 28, 2023
1 parent d11c85c commit 3650da8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/AutosarUmlActionExample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
run: |
$eaFileName = "counting-logic"
$eaFileExtension = "qeax"
$qeaxLocation = '${{ runner.temp }}/eaFileName-old.eaFileExtension'
$currentQeaxLocation = '.\eaFileName.eaFileExtension'
$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 3650da8

Please sign in to comment.