-
Notifications
You must be signed in to change notification settings - Fork 0
86 lines (81 loc) · 2.09 KB
/
Copy pathdocker.yml
File metadata and controls
86 lines (81 loc) · 2.09 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
name: Docker
on:
push:
branches: [main]
tags: ["v*"]
paths:
- "**.go"
- go.mod
- go.sum
- Dockerfile
- docker-entrypoint.sh
- index.html
- lucide.min.js
- favicon.svg
- .github/workflows/docker.yml
pull_request:
branches: [main]
paths:
- "**.go"
- go.mod
- go.sum
- Dockerfile
- docker-entrypoint.sh
- index.html
- lucide.min.js
- favicon.svg
- .github/workflows/docker.yml
workflow_dispatch:
permissions:
contents: read
packages: write
concurrency:
group: docker-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
cache: true
- name: Test
run: go test -race ./...
- name: Build Go binary
run: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs=false -trimpath -o /tmp/mihomo-sift .
docker:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: docker/setup-buildx-action@v4
- name: Log in to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker metadata
id: meta
uses: docker/metadata-action@v6
with:
images: ghcr.io/fatelightx/mihomosift
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=tag
type=sha,format=short
- name: Build and publish linux/amd64 image
uses: docker/build-push-action@v7
with:
context: .
file: ./Dockerfile
platforms: linux/amd64
pull: true
no-cache: true
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: type=gha,mode=max