All checks were successful
Build / build (pull_request) Successful in 35s
- update build/deploy workflow
32 lines
610 B
YAML
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
|