Skip to content

Commit

Permalink
Fix GitHub Actions user permissions in Docker run command
Browse files Browse the repository at this point in the history
  • Loading branch information
oleander committed Nov 8, 2024
1 parent e381ccd commit 73cae74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ jobs:
run: docker build -t git-fame -f .devcontainer/Dockerfile --build-arg USER_ID=$(id -u) --build-arg GROUP_ID=$(id -g) .

- name: Run tests in Docker container
run: docker run --rm -v $(pwd):/workspace --user $(id -u):$(id -g) git-fame bundle exec rspec
run: docker run --rm -v $(pwd):/workspace git-fame bundle exec rspec

0 comments on commit 73cae74

Please sign in to comment.