-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (30 loc) · 1.15 KB
/
docker-image.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
33
34
35
36
37
38
39
40
41
name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ajktown
password: ${{ secrets.AJKTOWN_ORG_ACTION }}
- name: Build the Docker image for PR
if: github.event_name == 'pull_request'
run: docker build . --file Dockerfile --tag ajktown/consistency:pr${{ github.event.pull_request.number }}
- name: Push the Docker image for PR
if: github.event_name == 'pull_request'
run: docker push ajktown/consistency:pr${{ github.event.pull_request.number }}
# - name: Build the Docker image as latest
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
# run: docker build . --file Dockerfile --tag ajktown/consistency:latest
# - name: Push the Docker image as latest
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
# run: docker push ajktown/consistency:latest