File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 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/
You can’t perform that action at this time.
0 commit comments