Merge pull request #401 from SynBioDex/dropdown_fix #27
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: Build Latest Backend Docker Image | |
| defaults: | |
| run: | |
| working-directory: ./SBOLCanvasBackend | |
| on: | |
| push: | |
| branches: [ final ] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-push: | |
| name: Build image and push to Docker Hub | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| name: Checkout source code | |
| - name: Build the Docker image | |
| run: | | |
| docker build . --tag synbiohub/sbolcanvas:backend | |
| - uses: azure/docker-login@v1 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Push the image to Docker Hub | |
| run: | | |
| docker push synbiohub/sbolcanvas:backend | |