Skip to content

Commit

Permalink
$arch was matching as $arch_, thus returning "" and then not being ab…
Browse files Browse the repository at this point in the history
…le to find the file later.
  • Loading branch information
thepigeongenerator committed Nov 23, 2024
1 parent 452d2a1 commit 05e1a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/add_build_to_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "processing architecture '$arch'"
dotnet publish ${{env.BUILD_PROJECT}} -c Release --self-contained -r "$arch"
fname="${{github.workspace}}/builds/$arch_${{env.BUILD_PROJECT}}.zip"
fname="${{github.workspace}}/builds/${arch}_${{env.BUILD_PROJECT}}.zip"
produced_files="$fname $produced_files"
cd "${{env.BUILD_PROJECT}}/bin/Release/net6.0/$arch"
Expand Down

0 comments on commit 05e1a33

Please sign in to comment.