mirror of
https://github.com/RetroDECK/net.rpcs3.RPCS3.git
synced 2025-02-16 20:15:39 +00:00
25 lines
470 B
YAML
25 lines
470 B
YAML
name: "Build Artifacts for RetroDECK main manifest"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
cloning-repo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Clone repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
|
|
build-project:
|
|
uses: RetroDECK/components-template/.github/workflows/build_artifacts.yml@main
|
|
with:
|
|
MANIFEST_FILENAME: "net.rpcs3.RPCS3.yaml" |