helps to add new files to the makefile #83
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: build-deb-ubuntu | |
on: [push] | |
jobs: | |
build-2004: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update && sudo apt-get install -y libpcsclite-dev libpcsclite1 libbsd-dev libbsd0 libedit-dev libreadline-dev libcryptsetup-dev libjson-c-dev libpam-dev devscripts fakeroot debhelper ragel | |
- run: make && make deb && mv ../*.deb ./ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ubuntu-2004 | |
path: '*.deb' | |
build-2204: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt-get update && sudo apt-get install -y libpcsclite-dev libpcsclite1 libbsd-dev libbsd0 libedit-dev libreadline-dev libcryptsetup-dev libjson-c-dev libpam-dev devscripts fakeroot debhelper ragel | |
- run: make && make deb && mv ../*.deb ./ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ubuntu-2204 | |
path: '*.deb' | |