Skip to content

REL: release 3.3.0 #112

REL: release 3.3.0

REL: release 3.3.0 #112

Workflow file for this run

#Github Workflow to build Debian packages for intelmq-api
#
#SPDX-FileCopyrightText: 2020 IntelMQ Team <[email protected]>
#SPDX-License-Identifier: AGPL-3.0-or-later
#
name: "Build Debian packages"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: A build on different Debian distributions
strategy:
matrix:
codename: ['bullseye'] # Only bullseye contains all dependencies
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Debian package action test
uses: schacht-certat/action-build-on-debian@v4
with:
codename: ${{ matrix.codename }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: debian-package-${{ matrix.codename }}-${{ github.sha }}
path: '~/artifacts'
retention-days: 5