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

26 lines
431 B
YAML

name: Continuous Integration
on:
push:
branches:
- main
jobs:
env:
runs-on: linux
steps:
- name: Show env
run: env | sort
build:
runs-on: linux
steps:
- name: List files
run: ls -alh
- name: Build tarball
run: make tarball
- name: Build rpm package
run: rpmbuild -ba netoik-rp.spec
- name: Upload rpm package
run: make upload