Skip to content

Commit

Permalink
Fix artifact download path
Browse files Browse the repository at this point in the history
  • Loading branch information
Perksey committed Dec 24, 2024
1 parent ec88886 commit aa29dc3
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 7 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,17 @@ jobs:
name: ${{ matrix.flat.target }} / ${{ matrix.flat.runtime }}
steps:
- uses: actions/checkout@v3
- run: ${{ format('.{0}{1}', startsWith(matrix.flat.runtime, 'win') && '\' || '/', matrix.flat.exec) }}
- run: |
echo "https://github.com/actions/upload-artifact/issues/174" > .workaround-${{ matrix.flat.target }}-${{ matrix.flat.runtime }}.txt
${{ format('.{0}{1}', startsWith(matrix.flat.runtime, 'win') && '\' || '/', matrix.flat.exec) }}
working-directory: ${{ matrix.flat.dir }}
- uses: actions/upload-artifact@v4
with:
name: natives-${{ matrix.flat.target }}-${{ matrix.flat.runtime }}
path: |
${{ matrix.flat.dir }}/runtimes/${{ matrix.flat.runtime }}/**/*
${{ matrix.flat.dir}}/lib/*${{ matrix.flat.runtime }}*/**/*
./workaround-*.txt
./${{ matrix.flat.dir }}/runtimes/${{ matrix.flat.runtime }}/**/*
./${{ matrix.flat.dir}}/lib/*${{ matrix.flat.runtime }}*/**/*
commit:
name: Commit Binaries
needs: [prerequisites, build]
Expand Down
4 changes: 0 additions & 4 deletions eng/build/Build.Native.cs

This file was deleted.

Binary file removed runtimes/linux-arm/native/libSDL3.so
Binary file not shown.
Binary file removed runtimes/linux-arm64/native/libSDL3.so
Binary file not shown.
Binary file removed runtimes/linux-x64/native/libSDL3.so
Binary file not shown.
Binary file removed runtimes/osx/native/libSDL3.dylib
Binary file not shown.
Binary file removed runtimes/win-arm64/native/SDL3.dll
Binary file not shown.
Binary file removed runtimes/win-x64/native/SDL3.dll
Binary file not shown.

0 comments on commit aa29dc3

Please sign in to comment.