From a3f6459b6de81288ad0bc5601a208e59068bc0a4 Mon Sep 17 00:00:00 2001 From: Yuvraj Date: Thu, 10 Feb 2022 09:00:35 +0530 Subject: [PATCH] Fixed flytescheduler image publish (#343) --- flyteadmin/.github/workflows/checks.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flyteadmin/.github/workflows/checks.yml b/flyteadmin/.github/workflows/checks.yml index c1580eb3cb..59231a6376 100644 --- a/flyteadmin/.github/workflows/checks.yml +++ b/flyteadmin/.github/workflows/checks.yml @@ -61,10 +61,12 @@ jobs: version: ${{ needs.bump_version.outputs.version }} dockerfile: Dockerfile push: true + repository: ${{ github.repository }} secrets: FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }} FLYTE_BOT_USERNAME: ${{ secrets.FLYTE_BOT_USERNAME }} + push-docker-image-flytescheduler: name: Build & Push Flytescheduler Image needs: [ bump_version ] @@ -72,6 +74,7 @@ jobs: with: version: ${{ needs.bump_version.outputs.version }} push: true + repository: flyteorg/flytescheduler dockerfile: Dockerfile.scheduler secrets: FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }}