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 Dec 13, 2024
1 parent 7e6d77e commit 4786d4a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build-deb.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build debian packages

on:
push:
branches:
- main
pull_request:

env:
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@main
with:
docker-image: ubuntu:devel
extra-source-build-deps: |
ca-certificates
git

0 comments on commit 4786d4a

Please sign in to comment.