Files
netoik-rp/.gitea/workflows/cd.yaml
samuel 0bc8c67e92
Some checks failed
Continuous Integration / build (push) Has been cancelled
ci: fix typo tag name
2026-02-15 00:53:15 +01:00

25 lines
550 B
YAML

name: Continuous Integration
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
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 "$(make name).spec"
- name: Upload rpm package
run: make upload
env:
PACKAGES_USERNAME: ${{ vars.PACKAGES_USERNAME }}
PACKAGES_TOKEN: ${{ secrets.PACKAGES_TOKEN }}