cicd: Az CLI login credentials TASK-5061 #275
Workflow file for this run
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: CellBase Develop workflow | ||
on: | ||
push: | ||
branches: | ||
- TASK-* | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
uses: opencb/java-common-libs/.github/workflows/build-java-app-workflow.yml@develop | ||
with: | ||
maven_opts: -DCELLBASE.WAR.NAME=cellbase -P default-config-test | ||
test: | ||
uses: ./.github/workflows/test-analysis.yml | ||
Check failure on line 16 in .github/workflows/task.yml GitHub Actions / CellBase Develop workflowInvalid workflow file
|
||
needs: build | ||
secrets: inherit | ||
deploy-docker: | ||
uses: opencb/java-common-libs/.github/workflows/deploy-docker-hub-workflow.yml@develop | ||
needs: test | ||
with: | ||
cli: python3 ./build/cloud/docker/docker-build.py push --images base --tag ${{ github.ref_name }} | ||
secrets: inherit |