Skip to content

Commit e817ac5

Browse files
committed
chore: Auto build pac-server.
1 parent c13229d commit e817ac5

File tree

1 file changed

+105
-0
lines changed

1 file changed

+105
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
name: docker-buildimage-caddy
2+
3+
on:
4+
schedule:
5+
- cron: '15 3 * * 0'
6+
push:
7+
branches: [ main ]
8+
paths:
9+
- 'golang/pac-server/**'
10+
- '.github/workflows/build-pac-server.yml'
11+
12+
jobs:
13+
build-pac-server:
14+
runs-on: ubuntu-latest
15+
needs: [ sematic-version ]
16+
strategy:
17+
matrix:
18+
platforms:
19+
- os: linux
20+
arch: amd64
21+
- os: darwin
22+
arch: amd64
23+
- os: freebsd
24+
arch: amd64
25+
- os: windows
26+
arch: amd64
27+
- os: linux
28+
arch: arm64
29+
- os: android
30+
arch: arm64
31+
- os: darwin
32+
arch: arm64
33+
- os: windows
34+
arch: arm64
35+
steps:
36+
-
37+
name: Checkout
38+
uses: actions/checkout@v4
39+
- name: Setup golang
40+
uses: actions/setup-go@v3
41+
with:
42+
go-version: '1.22.1'
43+
- name: ⚙️ Install deps
44+
run: |
45+
sudo apt-get update
46+
sudo apt-get -y install curl make
47+
- name: updated gfwlist.pac
48+
working-directory: golang/pac-server
49+
run: make download
50+
- name: Build pac-server
51+
working-directory: golang/pac-server
52+
env:
53+
GOOS: ${{ matrix.platforms.os }}
54+
GOARCH: ${{ matrix.platforms.arch }}
55+
CGO_ENABLED: "0"
56+
run: |
57+
make build
58+
- name: Upload binaries to release
59+
uses: svenstaro/upload-release-action@v2
60+
with:
61+
repo_token: ${{ secrets.GITHUB_TOKEN }}
62+
file: golang/pac-server/pac-server
63+
asset_name: pac-server_${{ matrix.platforms.os }}_${{ matrix.platforms.arch }}
64+
tag: pac-server-release
65+
make_latest: false
66+
overwrite: true
67+
build-image:
68+
runs-on: ubuntu-latest
69+
steps:
70+
-
71+
name: Checkout
72+
uses: actions/checkout@v4
73+
-
74+
name: Set up QEMU
75+
uses: docker/setup-qemu-action@v3
76+
-
77+
name: Set up Docker Buildx
78+
uses: docker/setup-buildx-action@v3
79+
-
80+
name: Login to DockerHub
81+
uses: docker/login-action@v3
82+
with:
83+
username: ${{ secrets.DOCKERHUB_USER }}
84+
password: ${{ secrets.DOCKERHUB_PASSWD }}
85+
-
86+
name: Login to ghcr.io
87+
uses: docker/login-action@v3
88+
with:
89+
registry: ghcr.io
90+
username: ${{ github.actor }}
91+
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
92+
-
93+
name: Build and push
94+
id: build
95+
uses: docker/build-push-action@v3
96+
with:
97+
context: golang/pac-server/
98+
file: golang/pac-server/Dockerfile
99+
platforms: linux/amd64,linux/arm64
100+
push: true
101+
build-args: |
102+
CGO_ENABLED=0
103+
tags: |
104+
docker.io/gsmlg/pac-server:latest
105+
ghcr.io/gsmlg/pac-server:latest

0 commit comments

Comments
 (0)