-
Notifications
You must be signed in to change notification settings - Fork 8
126 lines (118 loc) · 4.96 KB
/
v2ray.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
name: v2ray
on:
workflow_dispatch:
schedule:
- cron: "0 21 * * *"
push:
branches:
- master
paths:
- v2ray/**
- .github/workflows/v2ray.yml
jobs:
v4:
strategy:
fail-fast: false
matrix:
version:
- "v4.45.2"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up QEMU
uses: docker/setup-qemu-action@master
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@master
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@master
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
- name: Login to GitHub Container Registry
uses: docker/login-action@master
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Parse semver string
id: semver_parser
uses: booxmedialtd/ws-action-parse-semver@master
with:
input_string: ${{ matrix.version }}
version_extractor_regex: "v(.*)$"
- name: Build
uses: docker/build-push-action@master
with:
context: ./${{ github.workflow }}
file: ./${{ github.workflow }}/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386
push: ${{ github.event_name != 'pull_request' }}
target: v4
build-args: VERSION=${{ matrix.version }}
tags: |
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}.${{ steps.semver_parser.outputs.patch }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}.${{ steps.semver_parser.outputs.patch }}
- name: Docker Hub Description
uses: peter-evans/dockerhub-description@main
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
repository: ${{ github.repository_owner }}/${{ github.workflow }}
short-description: "V2Ray 路由规则文件加强版,代替 V2Ray 官方 geoip.dat 和 geosite.dat"
readme-filepath: ${{ github.workflow }}/README.md
v5:
strategy:
fail-fast: false
matrix:
version:
- "v5.15.1"
- "v5.14.1"
- "v5.4.1"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up QEMU
uses: docker/setup-qemu-action@master
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@master
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@master
with:
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
- name: Login to GitHub Container Registry
uses: docker/login-action@master
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Parse semver string
id: semver_parser
uses: booxmedialtd/ws-action-parse-semver@master
with:
input_string: ${{ matrix.version }}
version_extractor_regex: "v(.*)$"
- name: Build
uses: docker/build-push-action@master
with:
context: ./${{ github.workflow }}
file: ./${{ github.workflow }}/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6,linux/386
target: v5
push: ${{ github.event_name != 'pull_request' }}
build-args: VERSION=${{ matrix.version }}
tags: |
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}
zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}.${{ steps.semver_parser.outputs.patch }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}
ghcr.io/zydou/${{ github.workflow }}:v${{ steps.semver_parser.outputs.major }}.${{ steps.semver_parser.outputs.minor }}.${{ steps.semver_parser.outputs.patch }}