From b3924ded6888054d6cc93d0bfa7708b1bad396d5 Mon Sep 17 00:00:00 2001 From: Yee Hing Tong Date: Wed, 10 May 2023 13:33:19 -0700 Subject: [PATCH] change gh action Signed-off-by: Yee Hing Tong --- .github/workflows/checks.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4c3931700..a2be39265 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -53,17 +53,17 @@ jobs: goreleaser: name: Goreleaser - needs: [ bump_version ] # Only to ensure it can successfully build + needs: [ endtoend, integration, lint, tests, generate ] uses: flyteorg/flytetools/.github/workflows/goreleaser.yml@master secrets: FLYTE_BOT_PAT: ${{ secrets.FLYTE_BOT_PAT }} push_docker_image: name: Build & Push Flyteadmin Image - needs: [ bump_version ] + needs: [ endtoend, integration, lint, tests, generate ] uses: flyteorg/flytetools/.github/workflows/publish.yml@master with: - version: ${{ needs.bump_version.outputs.version }} + version: v1.1.88.1 dockerfile: Dockerfile push: true repository: ${{ github.repository }} @@ -74,10 +74,10 @@ jobs: push-docker-image-flytescheduler: name: Build & Push Flytescheduler Image - needs: [ bump_version ] + needs: [ endtoend, integration, lint, tests, generate ] uses: flyteorg/flytetools/.github/workflows/publish.yml@master with: - version: ${{ needs.bump_version.outputs.version }} + version: v1.1.88.1 push: true repository: flyteorg/flytescheduler dockerfile: scheduler.Dockerfile