Skip to content

Commit

Permalink
Remove 'verify' job from 'publish' action
Browse files Browse the repository at this point in the history
  • Loading branch information
fivegrant committed Aug 14, 2023
1 parent db24edd commit 6cfe408
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,20 @@
# Container Registry using HCL Bake file.

name: Build Docker Images
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches: ['main']
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

# 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:
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ target "_platforms" {
}

target "pyciemss-api-base" {
context = ".."
context = "."
tags = tag("pyciemss-api", "", "")
dockerfile = "docker/Dockerfile.api"
}
Expand All @@ -52,7 +52,7 @@ target "pyciemss-api" {
}

target "pyciemss-worker-base" {
context = ".."
context = "."
tags = tag("pyciemss-worker", "", "")
dockerfile = "docker/Dockerfile.worker"
}
Expand Down

0 comments on commit 6cfe408

Please sign in to comment.