From eb400ca3f08840b32670dca9ed51f7447459dae9 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 5 Nov 2024 12:32:46 +0900 Subject: [PATCH] Edited how the manifest filename is passed in build artifacts --- .github/workflows/build-artifacts.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 86aae52..a18cf15 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -8,13 +8,12 @@ on: workflow_call: workflow_dispatch: -env: - MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml" - jobs: install-dependencies: uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main build-project: needs: install-dependencies # Ensures this job only runs after install-dependencies - uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main \ No newline at end of file + uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main + with: + MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml" \ No newline at end of file