mirror of
https://github.com/RetroDECK/components-template.git
synced 2024-11-22 11:15:38 +00:00
19 lines
527 B
YAML
19 lines
527 B
YAML
|
name: "Install dependencies"
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
workflow_call:
|
||
|
|
||
|
jobs:
|
||
|
install-dependencies:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: "Install dependencies"
|
||
|
run: |
|
||
|
echo "Starting dependency installation..."
|
||
|
if [ -f "${GITHUB_WORKSPACE}/automation_tools/install_dependencies.sh" ]; then
|
||
|
/bin/bash "${GITHUB_WORKSPACE}/automation_tools/install_dependencies.sh"
|
||
|
else
|
||
|
echo "Dependency installation script not found."
|
||
|
exit 1
|
||
|
fi
|