mirror of
https://github.com/xmdhs/sing-box-ruleset.git
synced 2025-02-11 15:32:44 +08:00
27 lines
465 B
YAML
27 lines
465 B
YAML
|
name: build rule set
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
schedule:
|
||
|
- cron: "0 30 * * *"
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Build
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Set up Go 1.x
|
||
|
uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: ^1.21
|
||
|
id: go
|
||
|
|
||
|
- name: Check out code into the Go module directory
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Build
|
||
|
run: go run -v
|
||
|
|
||
|
- name: Release
|
||
|
run: |
|
||
|
|