Skip to content

Commit

Permalink
Fix git config
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDenisov authored and AlexDenisov committed Apr 29, 2022
1 parent e941ac2 commit 57ce918
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
- uses: actions/checkout@v1
with:
submodules: true

- name: Fix git config
run: |
git config --global --add safe.directory $PWD
- name: Set build settings
id: settings
run: |
Expand Down Expand Up @@ -94,4 +96,3 @@ jobs:
# This step fails sometimes (with ECONNRESET), but I'm not willing to
# debug it as the main source of packages is Cloudsmith
continue-on-error: true

4 changes: 3 additions & 1 deletion .github/workflows/ci-ubuntu-18.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
add-apt-repository ppa:git-core/ppa
apt-get update && apt-get install -y python-pip curl git
pip install ansible
- name: Fix git config
run: |
git config --global --add safe.directory $PWD
- uses: actions/checkout@v2
with:
submodules: true
Expand Down Expand Up @@ -103,4 +106,3 @@ jobs:
# This step fails sometimes (with ECONNRESET), but I'm not willing to
# debug it as the main source of packages is Cloudsmith
continue-on-error: true

4 changes: 3 additions & 1 deletion .github/workflows/ci-ubuntu-20.04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
- name: For debugging
run: |
cat $GITHUB_EVENT_PATH
- name: Fix git config
run: |
git config --global --add safe.directory $PWD
- name: Set build settings
id: settings
run: |
Expand Down Expand Up @@ -100,4 +103,3 @@ jobs:
# This step fails sometimes (with ECONNRESET), but I'm not willing to
# debug it as the main source of packages is Cloudsmith
continue-on-error: true

0 comments on commit 57ce918

Please sign in to comment.