2024-11-05 02:36:57 +00:00
|
|
|
name: "Build Artifacts for RetroDECK main manifest"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-11-05 03:02:38 +00:00
|
|
|
- master
|
|
|
|
- main
|
2024-11-05 02:36:57 +00:00
|
|
|
workflow_call:
|
|
|
|
|
2024-11-05 03:02:38 +00:00
|
|
|
env:
|
|
|
|
MANIFEST_FILENAME: "name.manifest.manifest.yaml"
|
2024-11-05 02:36:57 +00:00
|
|
|
|
2024-11-05 03:02:38 +00:00
|
|
|
jobs:
|
|
|
|
install-dependencies:
|
|
|
|
uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main
|
2024-11-05 02:36:57 +00:00
|
|
|
|
2024-11-05 03:02:38 +00:00
|
|
|
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 }}
|