Backport 8.052.01-1 to Debian 12 for Proxmox VE 12 Kernel compatibility #4
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' | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Build container image | |
run: docker build . | |
- name: Package rtl8168-dkms | |
run: docker run --rm -v ./build:/usr/src -v $(pwd):/usr/src/rtl8168 -w /usr/src/rtl8168 -it $(docker build -q .) dpkg-buildpackage -us -uc --no-sign -A | |
- name: Archive .deb files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deb | |
path: build/*.deb |