Skip to content

Commit

Permalink
(#51) Linux: install Git
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Dec 5, 2021
1 parent 5054527 commit b8eba72
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ jobs:
runs-on: ubuntu-20.04
container: ubuntu:18.04
steps:
- name: Set up Git
run: apt-get update && apt-get install -y software-properties-common && apt-get update && add-apt-repository -y ppa:git-core/ppa && apt-get update && apt-get install -y git

- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- run: cd $GITHUB_WORKSPACE
- run: ls
- run: pwd
- name: Initialize repository submodules
run: git submodule init

# Build:
- name: Install
Expand Down Expand Up @@ -70,6 +76,10 @@ jobs:
NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
PACKAGE_VERSION_BASE: 1.7.9
steps:
- run: apt-get update
- name: Set up Git
run: apt-get install git

- name: Checkout
uses: actions/checkout@v2
with:
Expand Down

0 comments on commit b8eba72

Please sign in to comment.