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