Branch to test the chanjo-report fix #14417
This file contains hidden or 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: Publish to Docker stage | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| docker-stage-push: | |
| name: Create staging docker image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out git repository | |
| uses: actions/checkout@v6 | |
| - name: Get branch name | |
| id: branch-name | |
| uses: tj-actions/branch-names@v9 | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Set up Docker Buildx | |
| id: buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build and push | |
| if: steps.branch-name.outputs.is_default == 'false' | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: ./ | |
| file: ./Dockerfile-server | |
| push: true | |
| provenance: mode=max | |
| sbom: true | |
| tags: "clinicalgenomics/scout-server-stage:${{steps.branch-name.outputs.current_branch}}, clinicalgenomics/scout-server-stage:latest" |