forked from LemmyNet/lemmy
-
Notifications
You must be signed in to change notification settings - Fork 1
156 lines (145 loc) Β· 5.85 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
name: Build
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Check for new tags in LemmyNet/Lemmy
run: |
#!/bin/bash
latest_tag=$(curl -s https://api.github.com/repos/lemmynet/lemmy/git/matching-refs/tags/0.1 -s | jq '.[-1].ref' -r | sed 's#.*/##')
#latest_tag=$(curl -s https://api.github.com/repos/lemmynet/lemmy/releases/latest -s | jq .name -r | head -n1 | cut -d " " -f1 | tail -c+2)
echo "latest_tag=$latest_tag" >> $GITHUB_ENV
-
name: Check if the new tag exists in DockerHub
id: check-tag
run: |
#!/bin/bash
dockerhub_tags=$(curl -s https://hub.docker.com/v2/repositories/${{ secrets.DOCKERHUB_REPO }}/tags | jq -r '.results[].name')
if echo "${dockerhub_tags}" | grep -q "${{ env.latest_tag }}"; then
echo "exists=true" >> $GITHUB_ENV
else
echo "exists=false" >> $GITHUB_ENV
fi
-
name: Set up Docker Buildx
if: env.exists == 'false'
uses: docker/setup-buildx-action@v3
-
name: Prepare Docker build
if: env.exists == 'false'
id: prepare
run: |
PLATFORMS="linux/amd64,linux/arm64"
TAGS=()
TAGS=("${{ secrets.DOCKERHUB_REPO }}:latest")
TAGS+=("${{ secrets.DOCKERHUB_REPO }}:${{ env.latest_tag }}")
TAGS+=("ghcr.io/${{ github.repository }}:latest")
TAGS+=("ghcr.io/${{ github.repository }}:${{ env.latest_tag }}")
echo "tags=${TAGS[@]}" >> $GITHUB_OUTPUT
echo "version=${{ env.latest_tag }}" >> $GITHUB_OUTPUT
echo "docker_platforms=${PLATFORMS}" >> $GITHUB_OUTPUT
echo "build_date=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
-
name: Clone branch
if: env.exists == 'false'
run: |
git config --global url.https://github.com/.insteadOf git://github.com/
git clone --recurse-submodules -j8 https://github.com/lemmynet/lemmy.git --single-branch --branch ${{ steps.prepare.outputs.version }}
cp Dockerfile lemmy/
cp .dockerignore lemmy/
-
name: Login into Docker Hub
if: env.exists == 'false'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
if: env.exists == 'false'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build Docker image
if: env.exists == 'false'
run: |
TAGS=(${{ steps.prepare.outputs.tags }})
echo "Build date: ${{ steps.prepare.outputs.build_date }}"
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}"
echo "Tags: ${{ steps.prepare.outputs.tags }}"
cd lemmy
docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
--output "type=image,push=true" \
--progress=plain \
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
--build-arg "VERSION_ARG=${{ steps.prepare.outputs.version }}" \
--build-arg "DATE_ARG=${{ steps.prepare.outputs.build_date }}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf "%s" "${TAGS[@]/#/ --tag }" ) .
-
name: Add custom code
if: env.exists == 'false'
run: |
#cp crates/api_common/src/request.rs lemmy/crates/api_common/src/request.rs
-
name: Build custom image
if: env.exists == 'false'
run: |
TAGS=()
TAGS=("${{ secrets.DOCKERHUB_CUSTOM }}:latest")
TAGS+=("${{ secrets.DOCKERHUB_CUSTOM }}:${{ env.latest_tag }}")
echo "Build date: ${{ steps.prepare.outputs.build_date }}"
echo "Docker platform: ${{ steps.prepare.outputs.docker_platforms }}"
echo "Tags: ${TAGS}"
cd lemmy
docker buildx build --platform ${{ steps.prepare.outputs.docker_platforms }} \
--output "type=image,push=true" \
--progress=plain \
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
--build-arg "VERSION_ARG=${{ steps.prepare.outputs.version }}" \
--build-arg "DATE_ARG=${{ steps.prepare.outputs.build_date }}" \
--build-arg "VCS_REF=${GITHUB_SHA::8}" \
$(printf "%s" "${TAGS[@]/#/ --tag }" ) .
-
name: Clear Docker credentials
if: env.exists == 'false'
run: |
rm -f ${HOME}/.docker/config.json
-
name: Create a release
if: env.exists == 'false'
uses: action-pack/github-release@v2
env:
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
with:
tag: "v${{ steps.prepare.outputs.version }}"
title: "v${{ steps.prepare.outputs.version }}"
-
name: Send mail
if: env.exists == 'false'
uses: dawidd6/action-send-mail@v3
with:
to: ${{secrets.MAILTO}}
from: Github Actions <${{secrets.MAILTO}}>
connection_url: ${{secrets.MAIL_CONNECTION}}
subject: Build of ${{ github.event.repository.name }} v${{ steps.prepare.outputs.version }} completed
body: |
The build job of ${{ github.event.repository.name }} v${{ steps.prepare.outputs.version }} was completed successfully!
See https://github.com/${{ github.repository }}/actions for more information.