Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 3d74fec

Browse files
Update pkgdeploy.yaml
1 parent 771669c commit 3d74fec

File tree

1 file changed

+23
-4
lines changed

1 file changed

+23
-4
lines changed

.github/workflows/pkgdeploy.yaml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
branches:
55
- master
66
jobs:
7-
debbuild:
8-
name: Debian
7+
deb10build:
8+
name: Debian 10
99
runs-on: ubuntu-18.04
1010
steps:
1111
- uses: actions/checkout@v2
@@ -21,7 +21,26 @@ jobs:
2121
mv ../wsl*.* ./pkgs
2222
- uses: actions/upload-artifact@v1
2323
with:
24-
name: DebianDEBs
24+
name: Debian10DEBs
25+
path: pkgs
26+
deb11build:
27+
name: Debian 11
28+
runs-on: ubuntu-18.04
29+
steps:
30+
- uses: actions/checkout@v2
31+
- name: Install Pre-requisites
32+
run: |
33+
sudo apt-get update -qq
34+
sudo apt-get install -qq apt-utils build-essential gzip devscripts debhelper
35+
- name: Build Debian Package
36+
run: |
37+
bash ./configure.sh --deb buster
38+
debuild -i -us -uc -b
39+
mkdir -p ./pkgs
40+
mv ../wsl*.* ./pkgs
41+
- uses: actions/upload-artifact@v1
42+
with:
43+
name: Debian11DEBs
2544
path: pkgs
2645
pgwbuild:
2746
name: Pengwin
@@ -96,4 +115,4 @@ jobs:
96115
# git clone --depth 1 https://patrick330602:[email protected]/wslutilities/rpm-wslu.git rpm-repo
97116
# git --git-dir=./rpm-repo/.git --work-tree=./rpm-repo add -A
98117
# git --git-dir=./rpm-repo/.git --work-tree=./rpm-repo commit -m "RPM Packaging file update: $(date)"
99-
# git --git-dir=./rpm-repo/.git --work-tree=./rpm-repo push
118+
# git --git-dir=./rpm-repo/.git --work-tree=./rpm-repo push

0 commit comments

Comments
 (0)