Remove obsolete firefox-pkcs11-loader dependency. #107
Workflow file for this run
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
name: CI | |
on: [push, pull_request] | |
env: | |
BUILD_NUMBER: ${{ github.run_number }} | |
jobs: | |
ubuntu: | |
name: Build on Ubuntu | |
runs-on: ubuntu-latest | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
DEBFULLNAME: 'github-actions' | |
DEBEMAIL: '[email protected]' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt update -qq && sudo apt install --no-install-recommends -y dpkg-dev devscripts fakeroot lintian | |
- name: Build | |
run: | | |
VERSION=$(date '+%y.%m.0.0') | |
dch --distribution `lsb_release -cs` -b -v ${VERSION} "Release ${VERSION}" | |
dpkg-buildpackage -us -uc | |
mv ../open-eid* . | |
- name: Lintian | |
run: lintian *.deb | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deb | |
path: ./*.deb |