mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-04-19 22:26:18 +02:00
Update Buildah build action to use v2 tag
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
15b645db2b
commit
897f4a8668
4 changed files with 10 additions and 3 deletions
2
.github/workflows/verify-push.yaml
vendored
2
.github/workflows/verify-push.yaml
vendored
|
@ -67,7 +67,7 @@ jobs:
|
||||||
# Build image using Buildah action
|
# Build image using Buildah action
|
||||||
- name: Build Image
|
- name: Build Image
|
||||||
id: build_image
|
id: build_image
|
||||||
uses: redhat-actions/buildah-build@main
|
uses: redhat-actions/buildah-build@v2
|
||||||
with:
|
with:
|
||||||
image: ${{ env.IMAGE_NAME }}
|
image: ${{ env.IMAGE_NAME }}
|
||||||
tags: ${{ env.IMAGE_TAGS }}
|
tags: ${{ env.IMAGE_TAGS }}
|
||||||
|
|
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
@ -8,6 +8,13 @@ export enum Inputs {
|
||||||
* Default: None.
|
* Default: None.
|
||||||
*/
|
*/
|
||||||
DIGESTFILE = "digestfile",
|
DIGESTFILE = "digestfile",
|
||||||
|
/**
|
||||||
|
* Extra args to be passed to podman push.
|
||||||
|
* Separate arguments by newline. Do not use quotes - @actions/exec will do the quoting for you.
|
||||||
|
* Required: false
|
||||||
|
* Default: None.
|
||||||
|
*/
|
||||||
|
EXTRA_ARGS = "extra-args",
|
||||||
/**
|
/**
|
||||||
* Name of the image to push
|
* Name of the image to push
|
||||||
* Required: true
|
* Required: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue