mirror of https://github.com/ppy/SDL3-CS.git
Pack individual projects to remove workload requirement
Can't really install iOS workload on Linux, iirc.
This commit is contained in:
parent
59a1369175
commit
66fc81f489
|
|
@ -29,7 +29,10 @@ jobs:
|
||||||
run: dotnet workload restore
|
run: dotnet workload restore
|
||||||
|
|
||||||
- name: Build & pack
|
- 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
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue