Skip to content

Commit

Permalink
debug tags and labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Bidon15 committed Nov 17, 2023
1 parent b93d5b0 commit e3dcfc8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/reusable_dockerfile_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,11 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log Docker Tags and Labels
run: |
echo "Tags: ${{ steps.meta.outputs.tags }}"
echo "Labels: ${{ steps.meta.outputs.labels }}"
# Build and Publish images on main, master, and versioned branches.
#
# The reason we split out these steps into 2 is for better handling of
Expand Down Expand Up @@ -271,3 +276,8 @@ jobs:
tags: ${{ matrix.registry.registry-url }}/${{ matrix.registry.registry-owner }}/${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: ${{ inputs.dockerfile }}
- name: Post Docker Build Log
run: |
echo "Completed Docker Build and Push"
echo "Used Tags: ${{ steps.meta.outputs.tags }}"
echo "Used Labels: ${{ steps.meta.outputs.labels }}"

0 comments on commit e3dcfc8

Please sign in to comment.