Skip to content

Commit

Permalink
CI: Add workflow to build debian package as part of build
Browse files Browse the repository at this point in the history
  • Loading branch information
3v1n0 committed Feb 26, 2024
1 parent c6e5212 commit eb92509
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build-deb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Build debian packages

on:
push:
branches:
- main
pull_request:

env:
DEBIAN_FRONTEND: noninteractive
DEBCONF_NONINTERACTIVE_SEEN: true
TERM: dumb

jobs:
build-deb-package:
name: Build ubuntu package
runs-on: ubuntu-latest
outputs:
run-id: ${{ github.run_id }}
pkg-name: ${{ env.PKG_NAME }}
pkg-version: ${{ env.PKG_VERSION }}

steps:
- name: Checkout authd code
uses: actions/checkout@v4

- name: Build debian packages and sources
uses: 3v1n0/desktop-engineering/gh-actions/common/build-debian@build-deb-docker
with:
docker-image: ubuntu:devel
extra-source-build-deps: |
ca-certificates
git

0 comments on commit eb92509

Please sign in to comment.