Skip to content

Commit 913ec45

Browse files
authored
Update test.yaml
1 parent 3712154 commit 913ec45

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
16+
with:
17+
submodules: true # Initializes and updates submodules
1618

1719
- name: Set up Python
1820
uses: actions/setup-python@v2
@@ -33,17 +35,17 @@ jobs:
3335
3436
- name: Initialize and update submodules
3537
run: |
36-
cd batocera.linux
38+
cd ${{ github.workspace }}/batocera.linux
3739
git submodule init
3840
git submodule update
3941
4042
- name: Build Batocera
4143
run: |
42-
cd batocera.linux
44+
cd ${{ github.workspace }}/batocera.linux
4345
make rk3588-build
4446
4547
- name: Upload artifacts
4648
uses: actions/upload-artifact@v3
4749
with:
4850
name: batocera-images
49-
path: batocera.linux/output/images/batocera/images/
51+
path: ${{ github.workspace }}/batocera.linux/output/images/batocera/images/

0 commit comments

Comments
 (0)