24
.gitea/workflows/build-rpm.yml
Normal file
24
.gitea/workflows/build-rpm.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
name: build-rpm
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
rpm:
|
||||
runs-on: nixos
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Build RPM
|
||||
run: nix develop .#rpm --command ./scripts/build-rpm.sh
|
||||
|
||||
- name: Upload RPM artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: prem2resolve-rpm
|
||||
path: rpmbuild/RPMS/**/*.rpm
|
||||
Reference in New Issue
Block a user