From 66fc81f489dac9fe383daf429fc252631f31aa0f Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 20 Jun 2025 01:19:26 +0900 Subject: [PATCH] Pack individual projects to remove workload requirement Can't really install iOS workload on Linux, iirc. --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fa3220c..6bdcaf8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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