Skip to content

Commit aa29dc3

Browse files
committed
Fix artifact download path
1 parent ec88886 commit aa29dc3

File tree

8 files changed

+6
-7
lines changed

8 files changed

+6
-7
lines changed

.github/workflows/native.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,17 @@ jobs:
6767
name: ${{ matrix.flat.target }} / ${{ matrix.flat.runtime }}
6868
steps:
6969
- uses: actions/checkout@v3
70-
- run: ${{ format('.{0}{1}', startsWith(matrix.flat.runtime, 'win') && '\' || '/', matrix.flat.exec) }}
70+
- run: |
71+
echo "https://github.com/actions/upload-artifact/issues/174" > .workaround-${{ matrix.flat.target }}-${{ matrix.flat.runtime }}.txt
72+
${{ format('.{0}{1}', startsWith(matrix.flat.runtime, 'win') && '\' || '/', matrix.flat.exec) }}
7173
working-directory: ${{ matrix.flat.dir }}
7274
- uses: actions/upload-artifact@v4
7375
with:
7476
name: natives-${{ matrix.flat.target }}-${{ matrix.flat.runtime }}
7577
path: |
76-
${{ matrix.flat.dir }}/runtimes/${{ matrix.flat.runtime }}/**/*
77-
${{ matrix.flat.dir}}/lib/*${{ matrix.flat.runtime }}*/**/*
78+
./workaround-*.txt
79+
./${{ matrix.flat.dir }}/runtimes/${{ matrix.flat.runtime }}/**/*
80+
./${{ matrix.flat.dir}}/lib/*${{ matrix.flat.runtime }}*/**/*
7881
commit:
7982
name: Commit Binaries
8083
needs: [prerequisites, build]

eng/build/Build.Native.cs

Lines changed: 0 additions & 4 deletions
This file was deleted.

runtimes/linux-arm/native/libSDL3.so

-9.22 MB
Binary file not shown.
-9.47 MB
Binary file not shown.

runtimes/linux-x64/native/libSDL3.so

-9.96 MB
Binary file not shown.

runtimes/osx/native/libSDL3.dylib

-4.69 MB
Binary file not shown.

runtimes/win-arm64/native/SDL3.dll

-3.67 MB
Binary file not shown.

runtimes/win-x64/native/SDL3.dll

-2.24 MB
Binary file not shown.

0 commit comments

Comments
 (0)