forked from woniuzfb/openwrt-xray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 817 Bytes
/
action.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
# action.yml
name: 'build openwrt-xray'
description: 'build xray with openwrt docker container action'
inputs:
compress-goproxy:
description: 'Compiling with GOPROXY proxy'
required: false
default: 'n'
exclude-assets:
description: 'Exclude geoip.dat & geosite.dat'
required: false
default: 'n'
compress-upx:
description: 'Compress executable files with UPX'
required: false
default: 'y'
compatibility-mode:
description: 'V2ray Compatibility mode(v2ray soft connection Xray)'
required: false
default: 'n'
outputs:
date:
description: 'openwrt-xray build date'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.compress-goproxy }}
- ${{ inputs.exclude-assets }}
- ${{ inputs.compress-upx }}
- ${{ inputs.compatibility-mode }}