-
-
Notifications
You must be signed in to change notification settings - Fork 107
97 lines (90 loc) · 2.64 KB
/
docker.yml
File metadata and controls
97 lines (90 loc) · 2.64 KB
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
name: Docker
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
tags:
- v*
workflow_dispatch:
inputs:
tag:
description: 'Docker tag for build results'
type: string
default: manual
required: true
schedule:
- cron: "0 0 * * *"
jobs:
build:
if: github.triggering_actor != 'allcontributors[bot]'
strategy:
fail-fast: true
max-parallel: 1
matrix:
variant:
- manyfold
- manyfold-solo
runs-on: ubuntu-latest
permissions:
contents: read # for checkout
id-token: write # for OIDC token, used for Depot
packages: write # to upload build to GHCR
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Work out Docker tags
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/${{ github.repository_owner }}/${{ matrix.variant }}
tags: |
type=raw,value=${{ inputs.tag }},event=workflow_dispatch
type=schedule,pattern=nightly
type=semver,pattern={{version}}
type=ref,event=pr
type=sha,format=long
type=edge
- name: Depot setup
uses: depot/setup-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: depot
uses: depot/build-push-action@v1
with:
project: bsbhgkfhgc
context: .
file: ./docker/${{ matrix.variant }}.dockerfile
platforms: linux/arm64
push: true
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: |
APP_VERSION=${{ steps.docker_meta.outputs.version }}
GIT_SHA=${{ github.sha }}
DOCKER_TAG=${{ steps.docker_meta.outputs.tags }}
smoke-test:
if: github.triggering_actor != 'allcontributors[bot]'
needs: build
runs-on: ubuntu-latest
steps:
- name: Smoke test
run: curl http://localhost:3214/health --fail-with-body
services:
manyfold:
image: ghcr.io/${{ github.repository_owner }}/manyfold-solo:sha-${{ github.sha }}
env:
SECRET_KEY_BASE: abc123
options: >-
--health-cmd "cat tmp/pids/server.pid"
--health-start-period 1m
--health-interval 30s
--health-timeout 10s
--health-retries 6
ports:
- 3214:3214