Pack individual projects to remove workload requirement

Can't really install iOS workload on Linux, iirc.
This commit is contained in:
Dan Balasescu 2025-06-20 01:19:26 +09:00
parent 59a1369175
commit 66fc81f489
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -29,7 +29,10 @@ jobs:
run: dotnet workload restore
- name: Build & pack
run: dotnet pack -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
run: |
dotnet pack SDL3-CS/SDL3-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
dotnet pack SDL3_image-CS/SDL3_image-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
dotnet pack SDL3_ttf-CS/SDL3_ttf-CS.csproj -c Release /p:Version=$(git describe --exact-match --tags HEAD) -o artifacts
- name: Upload artifact
uses: actions/upload-artifact@v4