rpmbuilder/.gitea/workflows/build.yaml
Ben Vincent 75a9fea331
All checks were successful
Build / build (pull_request) Successful in 35s
feat: artifact changes
- update build/deploy workflow
2024-12-01 21:17:05 +11:00

32 lines
610 B
YAML

name: Build
on:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8-runnerdnd:latest
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
run: |
make all
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm