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

25 lines
483 B
YAML

name: Continuous Integration
on:
push:
branches:
- main
jobs:
build:
runs-on: linux
steps:
- name: Git checkout
uses: actions/checkout@v6
with:
fetch-deps: 0
fetch-tags: true
- name: Show tags
run: git tag --list
- name: Build tarball
run: make tarball
- name: Build rpm package
run: rpmbuild -ba "$(make name).spec"
- name: Upload rpm package
run: make upload