Skip to content

Commit

Permalink
Fix docker build image cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nsumrakTT committed Feb 27, 2025
1 parent 8f165c3 commit f570d98
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
steps:
- name: Fix permissions
shell: bash
run: sudo chmod 777 -R $GITHUB_WORKSPACE
run: |
sudo chmod 777 -R $GITHUB_WORKSPACE
sudo chown ubuntu:ubuntu -R $(pwd)
git config --global --add safe.directory $(pwd)
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit f570d98

Please sign in to comment.