Rename from act-runner to gitea-runner. The upstream projects changed name from act_runner to runner. Reviewed-on: http://git.demus.dk/demus/gitea-runner-rpm/pulls/9 Co-authored-by: Daniel Demus <daniel@demus.dk> Co-committed-by: Daniel Demus <daniel@demus.dk>
20 lines
627 B
YAML
20 lines
627 B
YAML
name: Build and provide rpm of the Gitea runner
|
|
run-name: Rpmbuild gitea-runner by @${{ github.actor }}
|
|
on: [release]
|
|
jobs:
|
|
rpmbuild:
|
|
name: "Run rpmbuild"
|
|
strategy:
|
|
matrix:
|
|
rpmbuilder: [ f44, rawhide ]
|
|
runs-on: ${{ matrix.rpmbuilder }}-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 }}
|