Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit d90149e

Browse files
author
odacremolbap
committed
debug statements for image tag
1 parent c722204 commit d90149e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ jobs:
7979
IMAGE_TAG=sha-${GITHUB_SHA:0:7}
8080
[[ ${GITHUB_REF_TYPE} == "tag" ]] && IMAGE_TAG=${GITHUB_REF_NAME}
8181
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_OUTPUT
82+
echo "IMAGE_TAG=${IMAGE_TAG}"
8283
8384
- name: Publish container images
8485
env:
@@ -87,6 +88,7 @@ jobs:
8788
DIST_DIR: /tmp/dist
8889
run: |
8990
IMAGE_TAG=${{ steps.image-tag.outputs.IMAGE_TAG }} make release
91+
echo "IMAGE_TAG=${IMAGE_TAG}"
9092
9193
- name: Upload artifact
9294
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')

.github/workflows/e2e-tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,15 @@ jobs:
9090
9191
- name: Deploy TriggerMesh
9292
run: |
93+
echo "IMAGE_TAG=${{ github.event.client_payload.image_tag }}"
9394
sed -i config/500-*.yaml \
9495
-e "s|ko://github.com/triggermesh/triggermesh-event-sources-bundle/cmd/\(.*$\)|gcr.io/triggermesh/event-sources-bundle/\1:${{ github.event.client_payload.image_tag }}|g"
9596
9697
kubectl apply -f config/
9798
9899
kubectl -n knative-serving wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/name=knative-serving
99100
kubectl -n knative-eventing wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/name=knative-eventing
100-
kubectl -n triggermesh wait deployments.app --timeout=10m --for=condition=Available -l app.kubernetes.io/part-of=triggermesh
101+
kubectl -n triggermesh wait deployments.app --timeout=5m --for=condition=Available -l app.kubernetes.io/part-of=triggermesh
101102
102103
- name: Install Ginkgo
103104
run: go install github.com/onsi/ginkgo/v2/ginkgo

0 commit comments

Comments
 (0)