File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ jobs:
2525 - name : Verify outputs
2626 shell : bash
2727 run : |
28- for file in build64/Release /steam_api64.dll build32/Release /steam_api.dll; do
28+ for file in build64/x64 /steam_api64.dll build32/x86 /steam_api.dll; do
2929 if [ ! -f "$file" ]; then
3030 echo "::error::Missing: $file"
3131 exit 1
3232 fi
33- echo "Found: $file ($(stat --format=%s "$file") bytes) "
33+ echo "Found: $file"
3434 done
3535
3636 build-linux :
Original file line number Diff line number Diff line change 3232 shell : bash
3333 run : |
3434 mkdir -p dist/windows/x64 dist/windows/x86
35- cp build64/Release /steam_api64.dll dist/windows/x64/
36- cp build32/Release /steam_api.dll dist/windows/x86/
35+ cp build64/x64 /steam_api64.dll dist/windows/x64/
36+ cp build32/x86 /steam_api.dll dist/windows/x86/
3737
3838 - name : Upload artifact
3939 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments