-
Notifications
You must be signed in to change notification settings - Fork 64
81 lines (72 loc) · 2.17 KB
/
build-container.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: build-modix
on:
push:
branches: [ main ]
paths-ignore:
- 'wiki/**'
pull_request:
branches: [ main ]
paths-ignore:
- 'wiki/**'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name == 'push'
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
with:
version: latest
install: true
- name: Run Tests
uses: docker/[email protected]
with:
context: .
target: dotnet-test
push: false
cache-to: type=gha, scope=${{github.repository}}
cache-from: type=gha, scope=${{github.repository}}
- name: Extract Docker metadata for main build
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=${{ github.event_name == 'push' }}
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: type=gha, scope=${{github.repository}}
cache-from: type=gha, scope=${{github.repository}}
publish:
runs-on: ubuntu-latest
needs: build
steps:
- name: Sleep for 15 seconds
if: ${{ github.event_name == 'push' }}
run: sleep 15s
shell: bash
- name: Signal New Build
uses: enflo/curl-action@fabe347922c7a9e88bafa15c4b7d6326ea802695
if: ${{ github.event_name == 'push' }}
with:
curl: -X POST ${{ secrets.MODIX_UPDATE_WEBHOOK }}