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,