Skip to content

Commit 503a634

Browse files
committed
Artifact check also changed.
1 parent 1512ab4 commit 503a634

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/compile_c_apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Download C artifact
1818
uses: dawidd6/action-download-artifact@v9
1919
with:
20-
name: c-apps-windows
20+
name: c-apps-linux-${{runner.arch}}
2121
workflow: version_bump.yml
2222
path: ${{runner.workspace}}/artifact
2323
skip_unpack: true
@@ -26,7 +26,7 @@ jobs:
2626
- name: Check C artifact
2727
id: check_artifacts
2828
run: |
29-
if [ -e ${{runner.workspace}}/artifact/c-apps-windows.zip ]; then
29+
if [ -e ${{runner.workspace}}/artifact/c-apps-linux.${{runner.arch}}.zip ]; then
3030
echo "artifact_exists=true" >> $GITHUB_OUTPUT
3131
else
3232
echo "artifact_exists=false" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)