Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,31 +46,31 @@ jobs:
fi

- name: Download artifacts - SDL2-CS.dll
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: SDL2-CS
path: ./bin

- name: Download artifacts - native - Windows
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: Natives-Windows
path: ./native/win

- name: Download artifacts - native - MacOS
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: Natives-MacOS
path: ./native/osx

- name: Download artifacts - native - Linux (x64)
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: Natives-Linux(x64)
path: ./native/linux

- name: Download artifacts - native - Linux (arm64)
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: Natives-Linux(arm64)
path: ./native/linux
Expand Down