Skip to content

Commit 13c1acd

Browse files
committed
Fix job dependencies
1 parent 6d43825 commit 13c1acd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
run: go test ./...
2525
build-docker-image:
2626
runs-on: ubuntu-latest
27-
needs: [unit-test, check-format]
28-
if: ${{ startsWith(github.ref, 'refs/tags/') }}
27+
needs: [pre-build-checks]
28+
# if: ${{ startsWith(github.ref, 'refs/tags/') }}
2929
env:
3030
TAG_NAME: ${{ github.ref_name }}
3131
IMAGE_NAME: ghcr.io/mahesh-hegde/dhee

0 commit comments

Comments
 (0)