Files
netoik-git/.gitea/workflows/ci.yaml
samuel 89af50a63f
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
feat: first commit
2026-02-24 01:33:07 +01:00

22 lines
379 B
YAML

name: Continuous Integration
on:
push:
branches:
- main
jobs:
lint_n_build:
runs-on: linux
steps:
- name: Git checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
fetch-tags: true
- name: Build tarball
run: make tarball
- name: Build rpm file
run: rpmbuild -ba "$(make name).spec"