Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

fix makefile for RPM #18

fix makefile for RPM

fix makefile for RPM #18

Workflow file for this run

name: Release
on:
push:
# tags:
# - "*"
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
name: Checkout nasp-kernel-module
with:
submodules: recursive
- name: Install/setup prerequisites
run: sudo apt install debhelper
- name: Build nasp-kernel-module Debian package
run: make deb
- name: Build nasp-kernel-module RedHat package
run: make rpm
# - name: Release
# uses: ncipollo/release-action@v1
# with:
# artifacts: "../nasp-kernel-module_*.deb,rpmbuild/RPMS/noarch/nasp-kernel-module-*.rpm"
# prerelease: true
# uses: softprops/action-gh-release@v1
# # if: startsWith(github.ref, 'refs/tags/')
# with:
# files: |
# ../nasp-kernel-module_*.deb
# tag_name: ${{ github.ref }}
# draft: ${{ ! startsWith(github.ref, 'refs/tags/') }}
# prerelease: ${{ ! startsWith(github.ref, 'refs/tags/') }}