You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,8 +30,26 @@ jobs:
30
30
- TEST : debian-unstable
31
31
DOCKER_IMAGE : debian:unstable
32
32
steps:
33
+
- name: Setup OS
34
+
run: |
35
+
sudo apt-get update -y
36
+
sudo apt-get upgrade -y
37
+
- name: Setup Git
38
+
run: |
39
+
sudo apt-get install -y git
33
40
- name: Chcekout
34
41
uses: actions/checkout@v2
42
+
with:
43
+
fetch-depth: 0
44
+
submodules: recursive
45
+
- name: work around permission issue # https://github.com/actions/checkout/issues/760#issuecomment-1097501613
46
+
run: |
47
+
set -x
48
+
export USER=$(whoami)
49
+
git config --global --add safe.directory $GITHUB_WORKSPACE || echo "OK" # Show 'could not lock config file /github/home/.gitconfig: Permission denied', but it is ok
0 commit comments