Skip to content

Commit 3f7517f

Browse files
Install git before checkout (linux workflow)
1 parent b85304a commit 3f7517f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,14 @@ jobs:
9393
runs-on: ubuntu-latest
9494
container: ubuntu:20.04
9595
steps:
96+
- name: Install dependencies
97+
env:
98+
DEBIAN_FRONTEND: noninteractive
99+
run: |
100+
apt-get -qq update
101+
apt-get install perl wget zip bzip2 openssh-client rsync git
96102
- name: Checkout for Linux
97-
uses: actions/checkout@v3
103+
uses: actions/checkout@v4
98104
with:
99105
submodules: true
100106
- name: Download plugin descriptors
@@ -105,8 +111,6 @@ jobs:
105111
merge-multiple: true
106112
- name: Build and Upload HTML
107113
run: |
108-
apt-get -qq update
109-
apt-get install -y -qq perl wget zip bzip2 openssh-client rsync git
110114
TRAVIS_OS_NAME=linux gh_ed25519_key= gh_ed25519_iv= travis/build_html.sh
111115
TRAVIS_OS_NAME=linux travis/upload_html.sh
112116
env:

0 commit comments

Comments
 (0)