Merge pull request #271 from alan-turing-institute/remove-pulumi-stack #159
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 backend to Docker image" | |
on: | |
push: | |
branches: [main, develop, test-actions] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to Docker Hub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.DOCKER_HUB_TOKEN }} | |
- uses: actions/checkout@v3 | |
- name: 'Build main' | |
if: ${{ github.ref == 'refs/heads/main' }} | |
run: | | |
docker build -f dockerfiles/Dockerfile.backend -t turingcropapp/dtbase-backend:main . | |
docker push turingcropapp/dtbase-backend:main | |
- name: 'Build dev' | |
if: ${{ github.ref == 'refs/heads/develop' }} | |
run: | | |
docker build -f dockerfiles/Dockerfile.backend -t turingcropapp/dtbase-backend:dev . | |
docker push turingcropapp/dtbase-backend:dev | |
- name: 'Build test-actions' | |
if: ${{ github.ref == 'refs/heads/test-actions' }} | |
run: | | |
docker build -f dockerfiles/Dockerfile.backend -t turingcropapp/dtbase-backend:test-actions . | |
docker push turingcropapp/dtbase-backend:test-actions |