add support for debian packaging (#397)

* initial debian packaging

* add action for debian packaging

* trigger build

* fix syntax
This commit is contained in:
ymshenyu
2020-11-08 11:10:13 +08:00
committed by GitHub
parent fb0aadeea9
commit af578d4af2
12 changed files with 187 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
name: Build debian packages
on:
push:
release:
types: [prereleased]
jobs:
linux:
name: Debian sid
runs-on: ubuntu-latest
container: debian:sid
steps:
- name: Install git
run: |
apt-get update
apt-get install -y git
- name: Checking out sources
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Install build dependencies
run: |
apt-get install -y build-essential dh-golang golang-any
- name: Build
run: |
cp -r release/debian .
dpkg-buildpackage -us -uc -i -b
- name: Copy binary
run: |
cp ../*.deb ./
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: v2ray-debian-packages
path: ./*.deb