File tree 3 files changed +34
-0
lines changed
3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -1344,3 +1344,26 @@ jobs:
1344
1344
name : Check docker
1345
1345
run : |
1346
1346
docker image inspect localhost:5000/name/app:latest
1347
+
1348
+ disable-summary :
1349
+ runs-on : ubuntu-latest
1350
+ steps :
1351
+ -
1352
+ name : Checkout
1353
+ uses : actions/checkout@v4
1354
+ with :
1355
+ path : action
1356
+ -
1357
+ name : Set up Docker Buildx
1358
+ uses : docker/setup-buildx-action@v3
1359
+ with :
1360
+ version : ${{ inputs.buildx-version || env.BUILDX_VERSION }}
1361
+ driver-opts : |
1362
+ image=${{ inputs.buildkit-image || env.BUILDKIT_IMAGE }}
1363
+ -
1364
+ name : Build
1365
+ uses : ./action
1366
+ with :
1367
+ file : ./test/Dockerfile
1368
+ env :
1369
+ DOCKER_BUILD_NO_SUMMARY : true
Original file line number Diff line number Diff line change 37
37
* [ Customizing] ( #customizing )
38
38
* [ inputs] ( #inputs )
39
39
* [ outputs] ( #outputs )
40
+ * [ environment variables] ( #environment-variables )
40
41
* [ Troubleshooting] ( #troubleshooting )
41
42
* [ Contributing] ( #contributing )
42
43
@@ -256,6 +257,12 @@ The following outputs are available:
256
257
| `digest` | String | Image digest |
257
258
| `metadata` | JSON | Build result metadata |
258
259
260
+ # ## environment variables
261
+
262
+ | Name | Type | Description |
263
+ |---------------------------|------|-------------------------------------------------------------------------------------------------------------------|
264
+ | `DOCKER_BUILD_NO_SUMMARY` | Bool | If `true`, [build summary](https://docs.docker.com/build/ci/github-actions/build-summary/) generation is disabled |
265
+
259
266
# # Troubleshooting
260
267
261
268
See [TROUBLESHOOTING.md](TROUBLESHOOTING.md)
Original file line number Diff line number Diff line change @@ -141,6 +141,10 @@ actionsToolkit.run(
141
141
async ( ) => {
142
142
if ( stateHelper . buildRef . length > 0 ) {
143
143
await core . group ( `Generating build summary` , async ( ) => {
144
+ if ( process . env . DOCKER_BUILD_NO_SUMMARY && Util . parseBool ( process . env . DOCKER_BUILD_NO_SUMMARY ) ) {
145
+ core . info ( 'Summary disabled' ) ;
146
+ return ;
147
+ }
144
148
try {
145
149
const buildxHistory = new BuildxHistory ( ) ;
146
150
const exportRes = await buildxHistory . export ( {
You can’t perform that action at this time.
0 commit comments