We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1512ab4 commit 503a634Copy full SHA for 503a634
.github/workflows/compile_c_apps.yml
@@ -17,7 +17,7 @@ jobs:
17
- name: Download C artifact
18
uses: dawidd6/action-download-artifact@v9
19
with:
20
- name: c-apps-windows
+ name: c-apps-linux-${{runner.arch}}
21
workflow: version_bump.yml
22
path: ${{runner.workspace}}/artifact
23
skip_unpack: true
@@ -26,7 +26,7 @@ jobs:
26
- name: Check C artifact
27
id: check_artifacts
28
run: |
29
- if [ -e ${{runner.workspace}}/artifact/c-apps-windows.zip ]; then
+ if [ -e ${{runner.workspace}}/artifact/c-apps-linux.${{runner.arch}}.zip ]; then
30
echo "artifact_exists=true" >> $GITHUB_OUTPUT
31
else
32
echo "artifact_exists=false" >> $GITHUB_OUTPUT
0 commit comments