blob: e72a9ef3ea0444764c1ebf8a0ca73211aa652a09 (
plain) (
blame)
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
|
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
test_host:
runs-on: ubuntu-latest
name: Test (host)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt install -y wireguard-tools
- name: Test
run: sudo ./test/host/test.sh
test_linuxserver:
runs-on: ubuntu-latest
name: Test (LinuxServer)
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: sudo ./test/linuxserver/test.sh
publish:
needs: [test_host, test_linuxserver]
runs-on: ubuntu-latest
name: 'Publish'
if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
steps:
- name: Checkout
uses: actions/checkout@v4
# https://github.com/docker/metadata-action#semver
- id: meta
name: Docker Hub metadata
uses: docker/metadata-action@v5
with:
images: egortensin/wg-api-web
flavor: |
latest=auto
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: egortensin
password: '${{ secrets.DOCKERHUB_TOKEN }}'
- id: platforms
name: Which platforms?
# Building for ARM for every commit in master is too time-consuming.
run: |
if [ '${{ github.ref }}' = 'refs/heads/master' ]; then
echo 'platforms=amd64' >> "$GITHUB_OUTPUT"
else
echo 'platforms=amd64,armhf,arm64' >> "$GITHUB_OUTPUT"
fi
- name: Build and publish
uses: docker/build-push-action@v5
with:
# Without context, .dockerignore isn't respected?
# https://stackoverflow.com/a/74552407/514684
context: .
labels: '${{ steps.meta.outputs.labels }}'
platforms: '${{ steps.platforms.outputs.platforms }}'
push: true
tags: '${{ steps.meta.outputs.tags }}'
|