Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/build-push-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.6.1
Choose a base ref
...
head repository: docker/build-push-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.7.0
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 13, 2024

  1. print info message for build summary support checks

    Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
    crazy-max committed Aug 13, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    crazy-max CrazyMax
    Copy the full SHA
    23c657a View commit details
  2. chore: update generated content

    Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
    crazy-max committed Aug 13, 2024
    Copy the full SHA
    0aba704 View commit details
  3. Merge pull request #1211 from crazy-max/summary-info-message

    print info message for build summary support checks
    crazy-max authored Aug 13, 2024
    Copy the full SHA
    5cd11c3 View commit details
Showing with 6 additions and 6 deletions.
  1. +1 −1 dist/index.js
  2. +1 −1 dist/index.js.map
  3. +4 −4 src/main.ts
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -162,13 +162,13 @@ actionsToolkit.run(
if (!buildSummaryEnabled()) {
core.info('Build summary disabled');
} else if (GitHub.isGHES) {
core.warning('Build summary is not yet supported on GHES');
core.info('Build summary is not yet supported on GHES');
} else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) {
core.warning('Build summary requires Buildx >= 0.13.0');
core.info('Build summary requires Buildx >= 0.13.0');
} else if (builder && builder.driver === 'cloud') {
core.warning('Build summary is not yet supported with Docker Build Cloud');
core.info('Build summary is not yet supported with Docker Build Cloud');
} else if (!ref) {
core.warning('Build summary requires a build reference');
core.info('Build summary requires a build reference');
} else {
core.info('Build summary supported!');
stateHelper.setSummarySupported();