Skip to content

Commit 8be2b95

Browse files
committed
Fix Git checkout
1 parent 3b1e91d commit 8be2b95

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
2222

2323
steps:
24-
- uses: actions/checkout@v2
25-
with:
26-
submodules: recursive
27-
2824
- name: Install dependencies (x86_64)
2925
if: matrix.ARCH == 'x86_64'
3026
run: |
@@ -38,6 +34,11 @@ jobs:
3834
sudo apt-get update
3935
sudo apt-get install -y build-essential cmake git gcovr libmagic-dev:i386 libjpeg-dev:i386 libpng-dev:i386 libboost-filesystem-dev:i386 libboost-regex-dev:i386 cimg-dev nlohmann-json3-dev gcc-multilib g++-multilib libfuse2:i386 patchelf wget
4036
37+
# check out once git command is available
38+
- uses: actions/checkout@v2
39+
with:
40+
submodules: recursive
41+
4142
- name: Build AppImage
4243
run: bash ci/build.sh
4344

0 commit comments

Comments
 (0)