net.rpcs3.RPCS3/.github/workflows/build-artifacts.yml

20 lines
503 B
YAML
Raw Normal View History

2024-11-05 02:37:17 +00:00
name: "Build Artifacts for RetroDECK main manifest"
on:
push:
branches:
2024-11-05 02:39:14 +00:00
- master
- main
2024-11-05 02:37:17 +00:00
workflow_call:
workflow_dispatch:
2024-11-05 02:37:17 +00:00
2024-11-05 03:06:04 +00:00
env:
MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml"
2024-11-05 02:37:17 +00:00
jobs:
2024-11-05 02:39:14 +00:00
install-dependencies:
uses: RetroDECK/components-template/.github/workflows/install_dependencies.yml@main
2024-11-05 02:37:17 +00:00
2024-11-05 02:39:14 +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