summaryrefslogtreecommitdiff
path: root/.github/workflows/build-package.yml
blob: ed71194deb42287b9a34445a6f80d560437d1dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# name: Debian Package Build
# on:
#   pull_request:
#     branches:
#       - circinus
#     paths:
#       - '**'
#       - '!.github/**'
#       - '!**/*.md'

# jobs:
#   package-build:
#     runs-on: ubuntu-latest
#     container:
#       image: vyos/vyos-build:current
#       options: --sysctl net.ipv6.conf.lo.disable_ipv6=0
#     steps:
#       - name: Checkout
#         uses: actions/checkout@v4
#       - name: Build Debian package
#         run: dpkg-buildpackage -uc -us -tc -b

name: Debian Package Build
on:
  pull_request

jobs:
  build-package:
    uses: vyos/.github/.github/workflows/build-image.yml@feature/T6732-image-build-workflow
    secrets: inherit
    with:
      release_version: "1.5.1"
      release_flavor: "generic"
      release_arch: "amd64"