From e6ea98615b76db4436fd93095d018b925fea1e25 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 5 Nov 2024 12:06:04 +0900 Subject: [PATCH] Added manifest name --- .github/workflows/build-artifacts.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 4363ffa..9cf54c2 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -7,14 +7,15 @@ on: - main workflow_call: +env: + MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml" + jobs: install-dependencies: uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main - with: - # You can pass inputs here if the `install_dependencies.yml` workflow defines them build-project: needs: install-dependencies # Ensures this job only runs after install-dependencies uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main with: - # Pass inputs as needed if the `build_artifacts.yml` workflow defines them + MANIFEST_FILENAME: ${{ env.MANIFEST_FILENAME }} \ No newline at end of file