From 9dc1846e1bee9e2072dd9eb35768f4d86805141f Mon Sep 17 00:00:00 2001 From: Xin Ruan Date: Wed, 4 Sep 2024 11:26:34 +0200 Subject: [PATCH 1/2] test --- .github/workflows/build-runtime-watcher.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-runtime-watcher.yml b/.github/workflows/build-runtime-watcher.yml index b877acff..80f0e842 100644 --- a/.github/workflows/build-runtime-watcher.yml +++ b/.github/workflows/build-runtime-watcher.yml @@ -27,6 +27,7 @@ jobs: elif [[ "${{ github.event_name }}" == "push" ]]; then echo "tag=latest" >> $GITHUB_OUTPUT fi + - name: Echo the tag run: echo ${{ steps.get_tag.outputs.TAG }} build-image: From 7d3e74cca3546a0c555204a5b30387a59cd28735 Mon Sep 17 00:00:00 2001 From: Xin Ruan Date: Wed, 4 Sep 2024 11:36:14 +0200 Subject: [PATCH 2/2] fix dockerfile path --- .github/workflows/build-runtime-watcher.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-runtime-watcher.yml b/.github/workflows/build-runtime-watcher.yml index 80f0e842..9709d2d9 100644 --- a/.github/workflows/build-runtime-watcher.yml +++ b/.github/workflows/build-runtime-watcher.yml @@ -27,7 +27,6 @@ jobs: elif [[ "${{ github.event_name }}" == "push" ]]; then echo "tag=latest" >> $GITHUB_OUTPUT fi - - name: Echo the tag run: echo ${{ steps.get_tag.outputs.TAG }} build-image: @@ -35,6 +34,6 @@ jobs: uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main with: name: runtime-watcher - dockerfile: ./runtime-watcher/Dockerfile + dockerfile: Dockerfile context: ./runtime-watcher tags: ${{ needs.compute-tag.outputs.tag }}