Skip to content

Commit 4f8a6b0

Browse files
committed
another attempt
1 parent 4a20a0b commit 4f8a6b0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,19 @@ jobs:
1818
- os-arch: x86_64
1919
gcc-arch: x86_64-linux-gnu
2020
steps:
21+
- name: Install Git
22+
run: |
23+
apt-get update
24+
apt-get install -y git
25+
2126
- name: Checkout
2227
uses: actions/checkout@v3
2328
with:
2429
submodules: recursive
2530

2631
- name: Prepare build environment
2732
run: |
28-
apt-get update
29-
apt-get install -y build-essential git make gcc g++ libssl-dev ${{ matrix.os-arch == 'aarch64' && 'gcc-aarch64-linux-gnu g++-aarch64-linux-gnu' || '' }}
33+
apt-get install -y build-essential make gcc g++ libssl-dev ${{ matrix.os-arch == 'aarch64' && 'gcc-aarch64-linux-gnu g++-aarch64-linux-gnu' || '' }}
3034
mkdir -p release
3135
3236
- name: Build

0 commit comments

Comments
 (0)