chore: README and CI

This commit is contained in:
mzz2017 2023-01-31 21:49:27 +08:00
parent 7f362f3768
commit acf9280177
2 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,16 @@
name: Release
on:
push:
branches:
- main
paths:
- "**/*.go"
- "**/*.c"
- "**/*.h"
- "go.mod"
- "go.sum"
- ".github/workflows/*.yml"
release:
types: [ prereleased ]
pull_request:
@ -78,7 +88,9 @@ jobs:
sudo apt-get update -y && sudo apt-get install -y clang llvm gcc-multilib
- name: Get project dependencies
run: go mod download
run: |
git submodule update --init --recursive
go mod download
- name: Build dae
run: |

View File

@ -14,6 +14,7 @@ Build:
```shell
git clone https://github.com/v2rayA/dae.git
cd dae
git submodule update --init --recursive
make
```