Merge pull request #46 from certtools/aaronkaplan_pre-rel_3.3.0 #118
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 | |
# this does not currently work: | |
# - name: Debian package action test | |
# uses: schacht-certat/action-build-on-debian@v4 | |
# with: | |
# codename: ${{ matrix.codename }} | |
# therefore, also this won't make sense: | |
# - name: Upload artifacts | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: debian-package-${{ matrix.codename }}-${{ github.sha }} | |
# path: '~/artifacts' | |
# retention-days: 5 |