mirror of
https://github.com/RetroDECK/components-template.git
synced 2024-11-22 03:15:37 +00:00
Restored install dependencies script from build-project
This commit is contained in:
parent
d66344d012
commit
8c03d59468
3
.github/workflows/build_artifacts.yml
vendored
3
.github/workflows/build_artifacts.yml
vendored
|
@ -38,6 +38,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: 'true'
|
submodules: 'true'
|
||||||
|
|
||||||
|
- name: "Install dependencies"
|
||||||
|
uses: ./.github/workflows/build_artifacts.yml
|
||||||
|
|
||||||
- name: "Assembling manifest"
|
- name: "Assembling manifest"
|
||||||
if: ${{ env.DYNAMIC_MANIFEST == 'true' }}
|
if: ${{ env.DYNAMIC_MANIFEST == 'true' }}
|
||||||
run: |
|
run: |
|
||||||
|
|
6
.github/workflows/install_dependencies.yml
vendored
6
.github/workflows/install_dependencies.yml
vendored
|
@ -8,6 +8,12 @@ jobs:
|
||||||
install-dependencies:
|
install-dependencies:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
|
- name: Clone repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
submodules: 'true'
|
||||||
|
|
||||||
- name: "Install dependencies"
|
- name: "Install dependencies"
|
||||||
run: |
|
run: |
|
||||||
echo "Starting dependency installation..."
|
echo "Starting dependency installation..."
|
||||||
|
|
Loading…
Reference in a new issue