Skip to content

Commit f89cbf1

Browse files
committed
success.
1 parent 51265fc commit f89cbf1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pr-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
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

0 commit comments

Comments
 (0)