Ver código fonte

ci: fix artifacts on libsdl-org repo

Anonymous Maarten 8 meses atrás
pai
commit
bc8f4a1d0b

+ 1 - 1
.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]

+ 1 - 1
.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,