wc: improvements in Research Enviroment and new study-dashboard created #3689
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: "Task workflow for TASK-* branches" | |
on: | |
push: | |
branches: | |
- "TASK-*" | |
jobs: | |
build: | |
uses: ./.github/workflows/build-jsorolla-workflow.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
needs: build | |
with: | |
test_profile: runShortTests | |
secrets: inherit | |
deploy-docker: | |
uses: ./.github/workflows/deploy-docker-jsorolla.yml | |
needs: test | |
with: | |
cli: python3 ./docker/docker-build.py push --tag ${{ github.ref_name }} | |
secrets: inherit |