File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,17 @@ jobs:
16
16
runs-on : ubuntu-20.04
17
17
container : ubuntu:18.04
18
18
steps :
19
+ - run : apt-get update
20
+ - name : Set up Git
21
+ run : apt-get update && sudo apt-get install -y software-properties-common && sudo apt-get update && sudo add-apt-repository -y ppa:git-core/ppa && sudo apt-get update && sudo apt-get install -y git
22
+
19
23
- name : Checkout
20
24
uses : actions/checkout@v2
21
- with :
22
- submodules : true
25
+ - run : cd $GITHUB_WORKSPACE
26
+ - run : ls
27
+ - run : pwd
28
+ - name : Initialize repository submodules
29
+ run : git submodule init
23
30
24
31
# Build:
25
32
- name : Install
70
77
NUGET_PACKAGES : ${{ github.workspace }}/.github/nuget-packages
71
78
PACKAGE_VERSION_BASE : 1.7.9
72
79
steps :
80
+ - run : apt-get update
81
+ - name : Set up Git
82
+ run : apt-get install git
83
+
73
84
- name : Checkout
74
85
uses : actions/checkout@v2
75
86
with :
You can’t perform that action at this time.
0 commit comments