mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-02-22 18:21:20 +01:00
Simplify 'echo outputs' workflow steps
Signed-off-by: Tim Etchells <tetchell@redhat.com>
This commit is contained in:
parent
24d8460d9f
commit
dec02e9270
2 changed files with 5 additions and 10 deletions
12
.github/workflows/multiple-build.yaml
vendored
12
.github/workflows/multiple-build.yaml
vendored
|
@ -34,8 +34,7 @@ jobs:
|
|||
|
||||
- name: Echo outputs
|
||||
run: |
|
||||
echo "Digest: ${{ steps.push.outputs.digest }}"
|
||||
echo "Registry Paths: ${{ steps.push.outputs.registry-paths }}"
|
||||
echo "${{ toJSON(steps.push.outputs) }}"
|
||||
|
||||
build-only-docker:
|
||||
name: Build and push image built only on Docker
|
||||
|
@ -63,8 +62,7 @@ jobs:
|
|||
|
||||
- name: Echo outputs
|
||||
run: |
|
||||
echo "Digest: ${{ steps.push.outputs.digest }}"
|
||||
echo "Registry Paths: ${{ steps.push.outputs.registry-paths }}"
|
||||
echo "${{ toJSON(steps.push.outputs) }}"
|
||||
|
||||
build-podman-latest:
|
||||
name: Build and push image built latest on Podman
|
||||
|
@ -99,8 +97,7 @@ jobs:
|
|||
|
||||
- name: Echo outputs
|
||||
run: |
|
||||
echo "Digest: ${{ steps.push.outputs.digest }}"
|
||||
echo "Registry Paths: ${{ steps.push.outputs.registry-paths }}"
|
||||
echo "${{ toJSON(steps.push.outputs) }}"
|
||||
|
||||
build-docker-latest:
|
||||
name: Build and push image built latest on Docker
|
||||
|
@ -135,5 +132,4 @@ jobs:
|
|||
|
||||
- name: Echo outputs
|
||||
run: |
|
||||
echo "Digest: ${{ steps.push.outputs.digest }}"
|
||||
echo "Registry Paths: ${{ steps.push.outputs.registry-paths }}"
|
||||
echo "${{ toJSON(steps.push.outputs) }}"
|
||||
|
|
3
.github/workflows/verify-push.yaml
vendored
3
.github/workflows/verify-push.yaml
vendored
|
@ -100,5 +100,4 @@ jobs:
|
|||
|
||||
- name: Echo outputs
|
||||
run: |
|
||||
echo "Digest: ${{ steps.push.outputs.digest }}"
|
||||
echo "Registry Paths: ${{ steps.push.outputs.registry-paths }}"
|
||||
echo "${{ toJSON(steps.push.outputs) }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue