-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): re-enable DOCKER_BUILD_SUMMARY (#783)
- Loading branch information
1 parent
c5cd6fb
commit 5b16b96
Showing
1 changed file
with
3 additions
and
7 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 |
---|---|---|
|
@@ -188,14 +188,12 @@ jobs: | |
${{ env.TAGS_STANDARD }}${{ env.TAGS_SUPPLEMENTAL }} | ||
flavor: latest=${{ inputs.latest }},suffix=-${{ matrix.arch }} | ||
|
||
- uses: docker/setup-buildx-action@v3 | ||
|
||
# Setup Golang to use go pkg cache which is utilized in Dockerfile's cache mount. | ||
- name: Setup golang | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
# Path for additional-build-contexts may point to dependencies that are pulled by Go toolchain, | ||
# so we need to download them before building the image. | ||
- name: Set up Go dependencies for additional build contexts | ||
|
@@ -208,9 +206,6 @@ jobs: | |
- name: Build image | ||
id: build | ||
uses: docker/[email protected] | ||
env: | ||
DOCKER_BUILD_RECORD_UPLOAD: false | ||
DOCKER_BUILD_SUMMARY: false | ||
with: | ||
context: . | ||
build-contexts: ${{ inputs.additional-build-contexts }} | ||
|
@@ -226,7 +221,8 @@ jobs: | |
REPO_INFO=https://github.com/${{ github.repository }}.git | ||
GOPATH=${{ env.GOPATH}} | ||
GOCACHE=${{ env.GOCACHE}} | ||
PAT_GITHUB=${{ secrets.gh-pat }} | ||
secrets: | | ||
pat-github=${{ secrets.gh-pat }} | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
# Use outputs when push is set to false to allow subsequent steps to have | ||
|