forked from klakegg/docker-hugo
-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (42 loc) · 1.07 KB
/
build.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
56
name: Docker Image build CI
on:
pull_request:
branches:
- master
push:
branches:
- release/*
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clean Workspace
uses: AutoModality/action-clean@v1
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Docker login
uses: docker/login-action@v2
with:
username: floryn90
password: ${{ secrets.DOCKER_TOKEN }}
- name: Prepare
run: make prepare
- name: Build
run: make build
- name: Upload target content
uses: actions/upload-artifact@v3
with:
name: target
path: target
- name: Test Docsy
run: make test-docsy
- name: Test DocuAPI
run: make test-docuapi
- name: Push egde images
if: "!startsWith(github.ref, 'refs/tags/')"
run: make push-edge