rpmbuilder/.gitea/workflows/build.yaml
Ben Vincent 010d6a7b80
All checks were successful
Build / build (pull_request) Successful in 51s
feat: change to buildrunner
- cleaned up multiple layers
- removed deploy file
- updated deploy workflow
2024-12-01 00:10:21 +11:00

31 lines
678 B
YAML

name: Build
on:
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8:latest
options: --privileged
steps:
- name: Set up environment
run: |
dnf install -y yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf module enable -y nodejs:20
dnf install -y docker-ce-cli make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
run: |
make all
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"