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:
|
2024-11-05 03:16:54 +00:00
|
|
|
workflow_dispatch:
|
2024-11-05 02:37:17 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2024-11-05 05:00:48 +00:00
|
|
|
repo-clone:
|
2024-11-05 04:49:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Clone repo
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: 'true'
|
|
|
|
|
2024-11-05 02:39:14 +00:00
|
|
|
build-project:
|
2024-11-05 03:32:46 +00:00
|
|
|
uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main
|
2024-11-05 05:00:48 +00:00
|
|
|
needs: repo-clone
|
2024-11-05 03:32:46 +00:00
|
|
|
with:
|
|
|
|
MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml"
|