components-template/workflow_templates/build-artifacts.yml
2024-11-05 12:02:38 +09:00

21 lines
553 B
YAML

name: "Build Artifacts for RetroDECK main manifest"
on:
push:
branches:
- master
- main
workflow_call:
env:
MANIFEST_FILENAME: "name.manifest.manifest.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
with:
MANIFEST_FILENAME: ${{ env.MANIFEST_FILENAME }}