1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00
v2fly/.github/workflows/deb.yml
ymshenyu af578d4af2
add support for debian packaging (#397)
* initial debian packaging

* add action for debian packaging

* trigger build

* fix syntax
2020-11-08 11:10:13 +08:00

39 lines
847 B
YAML

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