From 3650da85deb22bd9b8f5c33fdac14db484c2f615 Mon Sep 17 00:00:00 2001 From: Patrik Koczka Date: Thu, 28 Sep 2023 10:29:11 +0200 Subject: [PATCH] #193 String concatenation --- .github/workflows/AutosarUmlActionExample.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/AutosarUmlActionExample.yml b/.github/workflows/AutosarUmlActionExample.yml index e3b5ef9..16300c4 100644 --- a/.github/workflows/AutosarUmlActionExample.yml +++ b/.github/workflows/AutosarUmlActionExample.yml @@ -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