puppetapi/.gitea/workflows/build.yaml
Ben Vincent 56c3c3aaee
Some checks failed
Build / build (pull_request) Failing after 1m4s
feat: add build job
2024-12-15 19:35:04 +11:00

30 lines
522 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: Install uv
run: |
dnf install uv -y
- name: Build
run: |
make build
- name: Show Built Items
run: |
find /workspace/unkin/puppet-api/dist -type f