Skip to content

Commit

Permalink
Fix github actions runner not liking owner of checkout directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheaterman committed Aug 12, 2022
1 parent 3355f6d commit c7b1887
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ jobs:
token: ${{ secrets.CI_TOKEN }}
fetch-depth: 0

- name: Set ownership
run: |
# this is to fix GIT not liking owner of the checkout dir
chown -R $(id -u):$(id -g) $PWD
- name: Create Docker build image
run: docker build -t open.mp/build:ubuntu-18.04 docker/build_ubuntu-18.04

Expand Down

0 comments on commit c7b1887

Please sign in to comment.