From bc8f4a1d0bea98bd51d584d73ccc4f9f740bd8e4 Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Tue, 30 Jul 2024 22:55:36 +0200 Subject: [PATCH] ci: fix artifacts on libsdl-org repo --- .github/workflows/build.yml | 2 +- .github/workflows/create-test-plan.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a33d55ad..09652e024 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: --github-variable-prefix platforms \ --github-ci \ --verbose \ - ${{ github.repository_owner != 'libsdl-org' && '--no-artifact' }} \ + ${{ (github.repository_owner != 'libsdl-org' && '--no-artifact') || '' }} \ --commit-message-file /tmp/commit_message.txt level1: needs: [controller] diff --git a/.github/workflows/create-test-plan.py b/.github/workflows/create-test-plan.py index d0f877aac..c51df8349 100755 --- a/.github/workflows/create-test-plan.py +++ b/.github/workflows/create-test-plan.py @@ -198,7 +198,7 @@ class JobDetails: cpactions_install_cmd: str = "" setup_vita_gles_type: str = "" - def to_workflow(self, enable_artifacts) -> dict[str, str|bool]: + def to_workflow(self, enable_artifacts: bool) -> dict[str, str|bool]: data = { "name": self.name, "os": self.os,