-
Notifications
You must be signed in to change notification settings - Fork 0
140 lines (118 loc) · 4.68 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
name: Build binaries and container images
on:
push: # temp
workflow_dispatch:
schedule: [ cron: '0 0 * * *' ]
permissions:
packages: write
contents: write
jobs:
build:
runs-on: ubuntu-20.04
outputs:
commit: ${{ steps.meta.outputs.commit }}
version: ${{ steps.meta.outputs.version }}
continue: ${{ steps.meta.outputs.continue }}
strategy:
fail-fast: true
matrix:
arch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
- run: git clone --depth=1 https://codeberg.org/VnPower/PixivFE
- uses: actions/setup-go@v5
with:
go-version-file: PixivFE/go.mod
cache-dependency-path: PixivFE/go.sum
- id: meta
run: |
cd PixivFE
echo "continue=$(diff -u ../.last_commit <(git rev-parse --short HEAD) > /dev/null 2>&1 && echo false || echo true)" >> $GITHUB_OUTPUT
echo "version=$(grep -rPoh "(?<=s.Version = \").*(?=\")")" >> $GITHUB_OUTPUT
echo "commit=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- if: ${{ steps.meta.outputs.continue == 'true' }}
run: |
cd PixivFE
CGO_ENABLED=0 GOOS=linux GOARCH=${{ matrix.arch }} go build -mod=readonly -v -ldflags="-s -w" -o pixivfe
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/setup-qemu-action@v3
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/setup-buildx-action@v3
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/metadata-action@v5
id: image-meta
with:
images: ghcr.io/kankerdev/pixivfe
tags: |
type=raw,value=${{ matrix.arch }}-${{ steps.meta.outputs.version }},enable={{is_default_branch}}
type=raw,value=${{ matrix.arch }}-${{ steps.meta.outputs.commit }},enable={{is_default_branch}}
type=raw,value=${{ matrix.arch }},enable={{is_default_branch}}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/restore@v4
id: docker-cache-restore
with:
path: .docker_cache
key: docker-cache-ubuntu-20.04-matrix-${{ matrix.arch }}-${{ hashFiles('./PixivFE/go.mod', './PixivFE/go.sum', './PixivFE/Dockerfile') }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile
context: ./PixivFE
cache-to: type=local,dest=.docker_cache/
cache-from: type=local,src=.docker_cache/
platforms: linux/${{ matrix.arch }}
tags: ${{ steps.image-meta.outputs.tags }}
labels: ${{ steps.image-meta.outputs.labels }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/cache/save@v4
id: docker-cache-save
with:
path: .docker_cache
key: docker-cache-ubuntu-20.04-matrix-${{ matrix.arch }}-${{ hashFiles('./PixivFE/go.mod', './PixivFE/go.sum', './PixivFE/Dockerfile') }}
- if: ${{ steps.meta.outputs.continue == 'true' }}
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch }}
path: |
PixivFE/pixivfe
PixivFE/views/
post:
runs-on: ubuntu-latest
needs: [ build ]
if: ${{ needs.build.outputs.continue == 'true' }}
env:
IMAGE: ghcr.io/kankerdev/pixivfe
COMMIT: ${{ needs.build.outputs.commit }}
VERSION: ${{ needs.build.outputs.version }}
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: |
docker buildx imagetools create \
--tag ${IMAGE}:${COMMIT} ${IMAGE}:a{md,rm}64-${COMMIT}
docker buildx imagetools create \
--tag ${IMAGE}:${VERSION} ${IMAGE}:a{md,rm}64-${VERSION}
docker buildx imagetools create \
--tag ${IMAGE}:latest ${IMAGE}:a{md,rm}64
- run: |
OLD=$(cat .last_commit)
NEW=${COMMIT}
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
echo "${NEW}" > .last_commit
git add .last_commit
git commit -m "Update .last_commit" -m "${OLD} >> ${NEW}"
git status
git push -u origin master