Files
netoik-rp/.gitea/workflows/ci.yaml
2026-02-14 21:45:25 +01:00

22 lines
402 B
YAML

name: Continuous Integration
on:
push:
branches:
- main
jobs:
build:
runs-on: linux
steps:
- name: Git checkout
uses: actions/checkout@v6
with:
fetch-tags: true
- name: Build tarball
run: make tarball
- name: Build rpm package
run: rpmbuild -ba netoik-rp.spec
- name: Upload rpm package
run: make upload