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

Create Makefile CI

Create Makefile CI #1

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare build
run: make prepare
- name: Build DEB package
run: make build_deb
- name: Build RPM package
run: make build_rpm
- name: Build TAR file
run: make build_tar