Skip to content

Commit cc441db

Browse files
authored
Add missing job dependency in build_tag.yml workflow (#6781)
Without the get-version dependency, the DOCKER_TAG var will be empty. Signed-off-by: Antonin Bas <[email protected]>
1 parent 83194f7 commit cc441db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
docker push antrea/antrea-controller-ubuntu-${{ matrix.suffix }}:"${DOCKER_TAG}"
5959
6060
push-manifest:
61-
needs: build
61+
needs: [get-version, build]
6262
runs-on: ubuntu-latest
6363
env:
6464
DOCKER_TAG: ${{ needs.get-version.outputs.version }}

0 commit comments

Comments
 (0)