v2ray-rules-dat/.github/workflows/main.yml

55 lines
1.4 KiB
YAML
Raw Normal View History

2019-12-10 15:40:58 +08:00
name: Build V2Ray rules dat files
on:
schedule:
2019-12-10 16:13:14 +08:00
- cron: "* * * * *"
2019-12-10 17:28:39 +08:00
2019-12-10 15:40:58 +08:00
jobs:
build:
name: Build
2019-12-10 17:17:09 +08:00
runs-on: ubuntu-latest
2019-12-10 15:40:58 +08:00
strategy:
matrix:
2019-12-10 16:30:22 +08:00
rule: [geoip, geosite]
2019-12-10 15:40:58 +08:00
include:
- rule: geoip
artifact_name: geoip.dat
asset_name: geoip.dat
- rule: geosite
artifact_name: geosite.dat
asset_name: geosite.dat
2019-12-10 17:28:39 +08:00
2019-12-10 15:40:58 +08:00
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@master
- name: Set GOPATH
run: |
2019-12-10 18:32:28 +08:00
echo "##[set-env name=GOPATH;]$GITHUB_WORKSPACE"
echo "##[add-path]$GITHUB_WORKSPACE/bin"
2019-12-10 15:40:58 +08:00
shell: bash
- name: Generate
run: |
chmod +x generate-rules-dat.sh
./generate-rules-dat.sh
2019-12-10 17:28:39 +08:00
2019-12-10 15:40:58 +08:00
- name: Create Latest tag
uses: EndBug/latest-tag@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload dat files to release
uses: svenstaro/upload-release-action@v1-release
with:
2019-12-10 18:24:50 +08:00
file: $GITHUB_WORKSPACE/v2ray-rules-dat/v2ray/${{ matrix.artifact_name }}
2019-12-10 15:40:58 +08:00
asset_name: ${{ matrix.asset_name }}
tag: latest
overwrite: true
repo_token: ${{ secrets.GITHUB_TOKEN }}