Skip to content

Commit 78fe3b0

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

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
with:
1717
submodules: true # Initializes and updates submodules
1818

19+
- name: List directory contents
20+
run: |
21+
ls -R ${{ github.workspace }}
22+
1923
- name: Set up Python
2024
uses: actions/setup-python@v2
2125
with:
@@ -35,17 +39,17 @@ jobs:
3539
3640
- name: Initialize and update submodules
3741
run: |
38-
cd ${{ github.workspace }}/batocera.linux
42+
cd ${{ github.workspace }}
3943
git submodule init
4044
git submodule update
4145
4246
- name: Build Batocera
4347
run: |
44-
cd ${{ github.workspace }}/batocera.linux
48+
cd ${{ github.workspace }}
4549
make rk3588-build
4650
4751
- name: Upload artifacts
4852
uses: actions/upload-artifact@v3
4953
with:
5054
name: batocera-images
51-
path: ${{ github.workspace }}/batocera.linux/output/images/batocera/images/
55+
path: ${{ github.workspace }}/output/images/batocera/images/

0 commit comments

Comments
 (0)