Skip to content

Commit

Permalink
ci: hotfix, remove files to release disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
Saibo Geng committed Oct 2, 2023
1 parent 9520b62 commit b03ed0a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: checkout code
uses: actions/checkout@v2 # here we use the v2 of the checkout action, it is the stable version from github
- name: Workaround for Disk Space #https://github.com/actions/runner-images/issues/2840
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY”
- name: 'Create env file'
run: echo "${{ secrets.DOT_ENV }}" > .env
- name: Build the Docker image
Expand Down

0 comments on commit b03ed0a

Please sign in to comment.