-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (35 loc) · 1009 Bytes
/
docker.yml
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
33
34
35
36
name: Docker
on:
push:
branches:
- master
- release
jobs:
build-latest:
runs-on: ubuntu-latest
if: "github.ref == 'refs/heads/master'"
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Push to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: chtjonas/roombooking
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
dockerfile: Dockerfile
tags: "latest"
build-prod:
runs-on: ubuntu-latest
if: "github.ref == 'refs/heads/release'"
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Push to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: chtjonas/roombooking
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
dockerfile: Dockerfile.prod
tags: "prod"