We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9c62a70 + 19364bc commit f36c7ecCopy full SHA for f36c7ec
.github/workflows/build-debug.yml
@@ -51,7 +51,10 @@ jobs:
51
# with linux-il2cpp. image from https://hub.docker.com/r/gableroux/unity3d/tags
52
image: gableroux/unity3d:${{ matrix.unity }}-linux-il2cpp
53
steps:
54
- - run: apt update && apt install git -y
+ # Ubuntu 18.04 git is too old, use ppa latest git.
55
+ - run: |
56
+ apt-get update && apt-get install --no-install-recommends -y software-properties-common && add-apt-repository -y ppa:git-core/ppa
57
+ apt-get update && apt-get install --no-install-recommends -y git
58
- uses: actions/checkout@v2
59
- run: echo -n "$UNITY_LICENSE" >> .Unity.ulf
60
env:
0 commit comments