Merge pull request #2517 from opencb/TASK-6754 #1029
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push OpenCGA develop | |
on: | |
push: | |
branches: | |
- develop | |
- release-* | |
workflow_dispatch: | |
jobs: | |
build: | |
uses: opencb/java-common-libs/.github/workflows/build-java-app-workflow.yml@develop | |
with: | |
maven_opts: -Phdp3.1,RClient -Dopencga.war.name=opencga -Dcheckstyle.skip | |
## TASK-4970: remove the test job from the develop.yml workflow because it is not needed anymore. | |
# test: | |
# uses: ./.github/workflows/test-analysis.yml | |
# needs: build | |
# with: | |
# test_profile: runShortTests,runMediumTests | |
# secrets: inherit | |
deploy-maven: | |
uses: opencb/java-common-libs/.github/workflows/deploy-maven-repository-workflow.yml@develop | |
needs: build | |
with: | |
maven_opts: -P hdp3.1 -Dopencga.war.name=opencga | |
secrets: inherit | |
deploy-docker: | |
uses: opencb/java-common-libs/.github/workflows/deploy-docker-hub-workflow.yml@develop | |
needs: build | |
with: | |
cli: python3 ./build/cloud/docker/docker-build.py push --images base,init | |
secrets: inherit |