Skip to content

Commit

Permalink
fix: build docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 18, 2023
1 parent 933ba35 commit d3c1344
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/docker-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'kokonect-link/cherrypick'
steps:
- name: Check free disk space
run: df -h
- name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧
uses: jlumbroso/free-disk-space@main
with:
# This might remove tools that are actually needed, if set to "true" but frees about 6 GB
tool-cache: false

# All of these default to true, but feel free to set to "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true
- name: Check out the repo
uses: actions/[email protected]
- name: Set up Docker Buildx
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check free disk space
run: df -h
- name: Free Up GitHub Actions Ubuntu Runner Disk Space 🔧
uses: jlumbroso/free-disk-space@main
with:
# This might remove tools that are actually needed, if set to "true" but frees about 6 GB
tool-cache: false

# All of these default to true, but feel free to set to "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true
- name: Check out the repo
uses: actions/[email protected]
- name: Set up Docker Buildx
Expand Down

0 comments on commit d3c1344

Please sign in to comment.