rpmbuilder/.gitea/workflows/build.yaml
Ben Vincent 63c708183b feat: add terragrunt
- add makefile for all builds
- add .gitignore
- add terragrunt dockerfile/nfpm
2024-11-23 13:52:13 +11:00

31 lines
662 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 Docker Image
run: |
make build
- name: Show tree
run: |
tree /workspace