-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (30 loc) · 1.14 KB
/
backend-docker.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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