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 3712154 commit 913ec45
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true # Initializes and updates submodules

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

0 comments on commit 913ec45

Please sign in to comment.