Skip to content

Commit

Permalink
cicd: fix release.yml 'needs' variable
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Jul 16, 2023
1 parent 4c9946c commit 659c1f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ jobs:

deploy-maven:
uses: opencb/java-common-libs/.github/workflows/deploy-maven-repository-workflow.yml@develop
needs: test
needs: build
with:
maven_opts: -Dcheckstyle.skip -DCELLBASE.WAR.NAME=cellbase
secrets: inherit

deploy-docker:
uses: opencb/java-common-libs/.github/workflows/deploy-docker-hub-workflow.yml@develop
needs: test
needs: build
with:
cli: python3 ./build/cloud/docker/docker-build.py push --images base
secrets: inherit

deploy-python:
uses: opencb/java-common-libs/.github/workflows/deploy-python-workflow.yml@develop
needs: test
needs: build
with:
cli: bash ./clients/python/python-build.sh push
artifact: build-folder
Expand Down

0 comments on commit 659c1f7

Please sign in to comment.