Skip to content

Commit 2583627

Browse files
authored
Merge pull request #37 from depot/luke/support-save-tag
feat: support --save-tag
2 parents 636daae + 678cb46 commit 2583627

File tree

6 files changed

+464
-395
lines changed

6 files changed

+464
-395
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ This action needs a Depot API token to communicate with your project's builders.
111111
| `buildx-fallback` | Boolean | If true, this action will fallback to using `docker buildx build` if `depot build` is unable to acquire a builder connection. This requires installing buildx with [`docker/setup-buildx-action`](https://github.com/docker/setup-buildx-action) (default: `false`) |
112112
| `lint` | Boolean | Lint dockerfiles and fail build if any issues are of `error` severity. (default `false`) |
113113
| `lint-fail-on` | String | Severity of linter issue to cause the build to fail. (`error`, `warn`, `info`, `none`) |
114-
| `save` | Boolean | Save the image to the Depot ephemeral registry (for use with the [depot/pull-action](https://github.com/depot/pull-action)) |
114+
| `save` | Boolean | Save the image to the Depot Registry (for use with the [depot/pull-action](https://github.com/depot/pull-action)) |
115+
| `save-tag` | Boolean | Tag your image in the Depot Registry |
115116

116117
### General inputs
117118

action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,12 @@ inputs:
9595
required: false
9696
default: 'false'
9797
save:
98-
description: 'Save the image to the Depot ephemeral registry'
98+
description: 'Save the image to the Depot Registry'
9999
required: false
100100
default: 'false'
101+
save-tag:
102+
description: 'Tag your image in the Depot Registry'
103+
required: false
101104
sbom:
102105
description: 'Generate SBOM attestation for the build (shorthand for --attest=type=sbom)'
103106
required: false

dist/index.js

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)