-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (46 loc) · 1.34 KB
/
default.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
53
54
55
# Action to build, test and publish the Docker image
# Uploading to Docker Hub only happens on changes to master
name: default
on:
# Enable option to manually run the action:
workflow_dispatch:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
main:
name: Build and test image
runs-on: ubuntu-latest
if: github.repository == 'dlang-tour/core-dreg'
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Login to DockerHub to push the generated image after the build
- name: Login to DockerHub
if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build image
uses: docker/build-push-action@v5
with:
push: false
load: true
tags: dlangtour/core-dreg:latest
context: .
- name: Verify the image
run: ./test.sh "dlangtour/core-dreg:latest"
- name: Push image
uses: docker/build-push-action@v5
with:
push: ${{ github.event_name == 'push' }}
tags: dlangtour/core-dreg:latest
context: .