-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (47 loc) · 1.34 KB
/
docker-image.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Docker Image CI
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
branches:
- master
tags:
- 'v*'
schedule:
# 1st Monday of each month
- cron: '30 5 1-7 * 1'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Print Variables (env)
run: env
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker images (master -> latest)
uses: docker/build-push-action@v6.7.0
#if: github.ref_name == 'master'
with:
pull: true
push: true
context: .
tags: ${{ secrets.DOCKERHUB_USERNAME }}/postfixadmin:latest
- name: Build and push Docker images (tag + master -> latest)
uses: docker/build-push-action@v6.7.0
#if: github.ref_name != 'master'
with:
pull: true
push: true
context: .
tags: ${{ secrets.DOCKERHUB_USERNAME }}/postfixadmin:latest,${{ secrets.DOCKERHUB_USERNAME }}/postfixadmin:${{ github.ref_name }}