-
Notifications
You must be signed in to change notification settings - Fork 1
134 lines (113 loc) · 4.29 KB
/
publish-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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build & Publish Containers
on:
workflow_dispatch:
push:
branches:
- next
pull_request:
release:
types:
- created
env:
USER: alwatr
jobs:
build:
if: github.repository_owner == 'Alwatr'
name: Build & Publish Containers
runs-on: ubuntu-latest
strategy:
fail-fast: true
max-parallel: 1
matrix:
include:
- path: nginx
- path: nginx-core
- path: nginx-cdn
- path: nginx-pwa
- path: nginx-ws
- path: nginx-json
permissions:
contents: read
packages: write
id-token: write
steps:
- name: ⤵️ Checkout repository
uses: actions/checkout@v4.2.2
- name: ❔ Check Container files changed
id: file_change
if: ${{ github.event_name != 'release' && github.event_name != 'workflow_dispatch' }}
uses: dorny/paths-filter@v3.0.2
with:
filters: |
container_folder:
./${{ matrix.path }}/**
- name: 🏗 Install cosign
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }}
uses: sigstore/cosign-installer@v3.8.0
- name: 🏗 Setup Docker Buildx
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
uses: docker/setup-buildx-action@v3.9.0
- name: 🏗 Cache Docker Layers
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
uses: actions/cache@v4.2.0
with:
path: /tmp/.buildx-cache
key: container/${{ matrix.path }}
- name: 🏗 Log into docker hub registry
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }}
uses: docker/#-action@v3.3.0
with:
username: ${{env.USER}}
password: ${{secrets.DOCKER_HUB_TOKEN}}
- name: 🏗 Log into ghcr.io registry
if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }}
uses: docker/#-action@v3.3.0
with:
registry: ghcr.io
username: ${{env.USER}}
password: ${{secrets.GITHUB_TOKEN}}
- name: 🏗 Extract metadata
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
id: meta
uses: docker/metadata-action@v5.6.1
with:
github-token: ${{secrets.GITHUB_TOKEN}}
images: |
name=ghcr.io/${{env.USER}}/${{matrix.path}},enable=true
name=docker.io/${{env.USER}}/${{matrix.path}},enable=true
tags: |
type=semver,enable=true,pattern={{major}}
type=semver,enable=true,pattern={{major}}.{{minor}}
type=semver,enable=true,pattern={{version}}
type=ref,enable=true,event=branch
- name: 🚀 Build and export to docekr
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
uses: docker/build-push-action@v6.13.0
with:
context: ./${{matrix.path}}
push: false
load: true
tags: ${{env.USER}}/${{matrix.path}}:test
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
build-args: |
BUILD_DATE=${{github.event.repository.updated_at}}
BUILD_REV=${{github.sha}}
- name: 🧪 Run tests
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
run: |
echo "Running tests for ${{matrix.path}}"
docker run --rm -e TEST_MODE=1 ${{env.USER}}/${{matrix.path}}:test /etc/nginx/entrypoint.sh nginx -T -c /etc/nginx/nginx.conf
- name: 🚀 Build and publish container image
if: ${{ steps.file_change.outputs.container_folder != 'false' }}
uses: docker/build-push-action@v6.13.0
with:
context: ./${{matrix.path}}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{steps.meta.outputs.tags}}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
build-args: |
BUILD_DATE=${{github.event.repository.updated_at}}
BUILD_REV=${{github.sha}}