Skip to content

Commit

Permalink
Update test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperKali authored Nov 3, 2024
1 parent 913ec45 commit 78fe3b0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ jobs:
with:
submodules: true # Initializes and updates submodules

- name: List directory contents
run: |
ls -R ${{ github.workspace }}
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -35,17 +39,17 @@ jobs:
- name: Initialize and update submodules
run: |
cd ${{ github.workspace }}/batocera.linux
cd ${{ github.workspace }}
git submodule init
git submodule update
- name: Build Batocera
run: |
cd ${{ github.workspace }}/batocera.linux
cd ${{ github.workspace }}
make rk3588-build
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: batocera-images
path: ${{ github.workspace }}/batocera.linux/output/images/batocera/images/
path: ${{ github.workspace }}/output/images/batocera/images/

0 comments on commit 78fe3b0

Please sign in to comment.