-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move step to free up disk space before build
- Loading branch information
Showing
1 changed file
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|