Fixing build-artifacts wokflow

This commit is contained in:
XargonWan 2024-11-05 11:39:14 +09:00
parent 7f864a8c6e
commit bcd0c31515

View file

@ -3,18 +3,18 @@ name: "Build Artifacts for RetroDECK main manifest"
on: on:
push: push:
branches: branches:
- master - master
- main - main
workflow_call: workflow_call:
jobs: jobs:
Building-project: install-dependencies:
runs-on: ubuntu-latest uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main
with:
# You can pass inputs here if the `install_dependencies.yml` workflow defines them
steps: build-project:
needs: install-dependencies # Ensures this job only runs after install-dependencies
- name: "Install dependencies" uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main
uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main with:
# Pass inputs as needed if the `build_artifacts.yml` workflow defines them
- name: "Build project"
uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main