16 lines
498 B
YAML
16 lines
498 B
YAML
name: Build and provide rpm of pyxdg
|
|
run-name: Rpmbuild pyxdg by @${{ github.actor }}
|
|
on: [release]
|
|
jobs:
|
|
rpmbuild:
|
|
runs-on: f42-minimal-rpmbuild
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: https://git.demus.dk/actions/git-clone@main
|
|
- name: Build the rpms
|
|
uses: https://git.demus.dk/actions/rpmbuild@main
|
|
- name: Deploy to packages
|
|
uses: https://git.demus.dk/actions/rpm-deploy@main
|
|
with:
|
|
pat: ${{ secrets.RPM_REPO_WRITE }}
|