Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,19 @@ jobs:
DEBEMAIL: 'github-actions@github.com'
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y dh-make dpkg-dev devscripts fakeroot lintian
run: sudo apt update -qq && sudo apt install --no-install-recommends -y debhelper dpkg-dev devscripts lintian
- name: Build
run: |
VERSION=$(date '+%y.%m.0.0')
dh_make --createorig --addmissing --defaultless -y -p open-eid_${VERSION}
dch --distribution `lsb_release -cs` -b -v ${VERSION} 'Release'
dpkg-buildpackage -rfakeroot -us -uc
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@v2
uses: actions/upload-artifact@v4
with:
name: deb
path: ./*.deb
path: ./*.deb
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ A metapackage for Ubuntu/Debian based distributions.

2. Build

dh_make --createorig --addmissing --defaultless -y -p open-eid_18.6.0.0
dch --distribution unstable -v 18.6.0.0 'Release'
dpkg-buildpackage -rfakeroot -us -uc

Expand Down
2 changes: 0 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ Homepage: https://www.ria.ee
Package: open-eid
Architecture: all
Depends:
firefox-pkcs11-loader,
web-eid,
qdigidoc4,
libnss3-tools,
Expand All @@ -21,7 +20,6 @@ Description: This is eID Software metapackage
This package does not contain anything itself, it's a metapackage that will
pull in packages required for using the eID Software on the desktop:
.
firefox-pkcs11-loader - Firefox PKCS#11 module loader
web-eid - new Chrome / Firefox digital signature plugin
qdigidoc4 - Estonian digital signing and ID card management application
.
Expand Down