Merge pull request #533 from SynBioHub/zane-patch-downloadplugins #31
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: Build and push docker images | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/**' | |
jobs: | |
build-and-push: | |
name: Build frontent image and push to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
name: Checkout source code | |
- name: Build the Docker image for the frontend | |
run: | | |
docker build --build-arg TEST_VAR=production ./frontend --tag synbiohub/sbh3frontend:snapshot | |
- uses: azure/docker-login@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push the frontend image to Docker Hub | |
run: | | |
docker push synbiohub/sbh3frontend:snapshot |