From 6cfe408143b6505980d24b82ad0807c7a5499958 Mon Sep 17 00:00:00 2001 From: Five Grant <5@fivegrant.com> Date: Mon, 14 Aug 2023 08:09:46 -0500 Subject: [PATCH] Remove 'verify' job from 'publish' action --- .github/workflows/publish.yaml | 6 ------ docker/docker-bake.hcl | 4 ++-- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index ffdbc28..84dfc43 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -3,7 +3,6 @@ # Container Registry using HCL Bake file. name: Build Docker Images -# yamllint disable-line rule:truthy on: workflow_dispatch: push: @@ -11,10 +10,6 @@ on: tags: ['*'] jobs: - # Call the Lint & Format workflow before publishing - verify: - uses: ./.github/workflows/lint.yaml - # Call the Tag Generator to generate an image tag to use tag-generator: uses: darpa-askem/.github/.github/workflows/tag-generator.yaml@main @@ -22,7 +17,6 @@ jobs: # Build and Publish all targets associated with specified group bake: needs: - - verify - tag-generator uses: darpa-askem/.github/.github/workflows/bake-publish.yml@main with: diff --git a/docker/docker-bake.hcl b/docker/docker-bake.hcl index cde37a0..54498ba 100644 --- a/docker/docker-bake.hcl +++ b/docker/docker-bake.hcl @@ -42,7 +42,7 @@ target "_platforms" { } target "pyciemss-api-base" { - context = ".." + context = "." tags = tag("pyciemss-api", "", "") dockerfile = "docker/Dockerfile.api" } @@ -52,7 +52,7 @@ target "pyciemss-api" { } target "pyciemss-worker-base" { - context = ".." + context = "." tags = tag("pyciemss-worker", "", "") dockerfile = "docker/Dockerfile.worker" }