Skip to content

Commit c0fc442

Browse files
fix(gha): Add workflow tag debugging step and fix tag (#140)
1 parent 8b1d327 commit c0fc442

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/datahub-actions-docker.yml

+15-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# The tracking tag will be "head", "v1.2.3", or "pr1234".
2727
# The unique tag will be a short SHA.
2828
unique_tag: ${{ steps.tag.outputs.unique_tag }}
29-
tracking_tag: ${{ steps.tag.outputs.tag }}
29+
tracking_tag: ${{ steps.tag.outputs.tracking_tag }}
3030
steps:
3131
- name: Checkout
3232
uses: actions/checkout@v3
@@ -41,8 +41,10 @@ jobs:
4141
TRACKING_TAG=$(echo ${GITHUB_REF} | sed -e "s,refs/heads/main,head,g" -e 's,refs/tags/,,g' -e 's,refs/pull/\([0-9]*\).*,pr\1,g')
4242
echo "TRACKING_TAG: $TRACKING_TAG"
4343
44-
echo "unique_tag=$UNIQUE_TAG" >> "$GITHUB_OUTPUT"
45-
echo "tracking_tag=$TRACKING_TAG" >> "$GITHUB_OUTPUT"
44+
{
45+
echo "unique_tag=${UNIQUE_TAG}"
46+
echo "tracking_tag=${TRACKING_TAG}"
47+
} >> $GITHUB_OUTPUT
4648
- name: Check whether publishing enabled
4749
id: publish
4850
env:
@@ -64,6 +66,11 @@ jobs:
6466
steps:
6567
- name: Check out the repo
6668
uses: actions/checkout@v4
69+
- name: Setup Outputs
70+
run: |
71+
echo "GITHUB_REF: $GITHUB_REF"
72+
echo "unique_tag=${{ needs.setup.outputs.unique_tag }}"
73+
echo "tracking_tag=${{ needs.setup.outputs.tracking_tag }}"
6774
- name: Docker meta
6875
id: docker_meta
6976
uses: docker/metadata-action@v5
@@ -101,6 +108,11 @@ jobs:
101108
steps:
102109
- name: Check out the repo (slim)
103110
uses: actions/checkout@v3
111+
- name: Setup Outputs
112+
run: |
113+
echo "GITHUB_REF: $GITHUB_REF"
114+
echo "unique_tag=${{ needs.setup.outputs.unique_tag }}"
115+
echo "tracking_tag=${{ needs.setup.outputs.tracking_tag }}"
104116
- name: Docker meta (slim)
105117
id: docker_meta_slim
106118
uses: docker/metadata-action@v5

0 commit comments

Comments
 (0)