mirror of
https://github.com/RetroDECK/components-template.git
synced 2024-11-22 11:15:38 +00:00
18 lines
337 B
YAML
18 lines
337 B
YAML
name: "Install dependencies"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
install-dependencies:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Clone repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- name: "Install dependencies"
|
|
run: ./automation_tools/install_dependencies.sh |