-
Notifications
You must be signed in to change notification settings - Fork 9
134 lines (120 loc) · 4.77 KB
/
xray.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
name: xray
on:
workflow_dispatch:
schedule:
- cron: "0 21 * * *"
push:
branches:
- master
paths:
- xray/**
- .github/workflows/xray.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Get latest release
id: latest-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: XTLS/Xray-core
run:
echo "TAG=$(gh api /repos/${{env.REPO}}/releases/latest --jq .tag_name)" >> $GITHUB_OUTPUT
- name: Print release version
run: |
echo "${{ steps.latest-release.outputs.TAG }}"
- name: Parse semver string
id: semver_parser
uses: booxmedialtd/ws-action-parse-semver@master
with:
input_string: ${{steps.latest-release.outputs.TAG }}
version_extractor_regex: "v(.*)$"
- name: Use parsed semver
run: |
echo "${{ steps.semver_parser.outputs.major }}"
echo "${{ steps.semver_parser.outputs.minor }}"
echo "${{ steps.semver_parser.outputs.patch }}"
echo "${{ steps.semver_parser.outputs.fullversion }}"
- 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: Build
uses: docker/build-push-action@master
with:
context: ./${{ github.workflow }}
file: ./${{ github.workflow }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
build-args: TAG=v${{ steps.semver_parser.outputs.fullversion }}
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 }}
build-nightly:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
- 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: Build
uses: docker/build-push-action@master
with:
context: ./${{ github.workflow }}
file: ./${{ github.workflow }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
build-args: TAG=nightly
tags: |
zydou/${{ github.workflow }}:latest
zydou/${{ github.workflow }}:${{ env.date }}
ghcr.io/zydou/${{ github.workflow }}:latest
ghcr.io/zydou/${{ github.workflow }}:${{ env.date }}
dockerhub-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- 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: "Xray 路由规则文件加强版,代替官方 geoip.dat 和 geosite.dat"
readme-filepath: ${{ github.workflow }}/README.md