Skip to content

Commit

Permalink
move step to free up disk space before build
Browse files Browse the repository at this point in the history
  • Loading branch information
mauwii committed Sep 28, 2023
1 parent 8797894 commit ce7b40f
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,6 @@ jobs:
steps:
- uses: actions/[email protected]

- name: Free up disk space
# kics-scan ignore-line
uses: ./.github/actions/free-space
with:
deleteDotnet: 'true'
deleteAndroid: 'true'

- name: Setup QEMU
# kics-scan ignore-line
uses: docker/[email protected]
Expand All @@ -112,10 +105,18 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN || secrets.GITHUB_TOKEN }}
logout: true

# Free up space on the runner
- name: Free up disk space
# kics-scan ignore-line
uses: ./.github/actions/free-space
with:
deleteDotnet: 'true'
deleteAndroid: 'true'

# Bake the image
# kics-scan ignore-line
- uses: docker/[email protected]
name: Build and Push
- name: Build and Push
# kics-scan ignore-line
uses: docker/[email protected]
id: bake
with:
files: docker-bake.hcl
Expand Down

0 comments on commit ce7b40f

Please sign in to comment.