This repository has been archived on 2025-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
docker-almalinux-buildrunner/.gitea/workflows/build.yaml
Ben Vincent 859be6100c
Some checks failed
Build / build (pull_request) Failing after 41s
feat: initial commit
- add Makefile
- add gitea workflows
- add Dockerfile
- pass through trusted ca certificates
2024-09-08 01:04:03 +10:00

28 lines
641 B
YAML

name: Build
on:
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: docker:dind
options: --privileged
volumes:
- /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt
- /etc/pki/tls/certs/ca-bundle.crt:/etc/ssl/certs/ca-certificates.crt
- /etc/pki/tls/certs/ca-bundle.crt:/etc/docker/certs.d/git.query.consul/ca.crt
steps:
- name: Set up environment
run: |
apk add --no-cache make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3
- name: Build Docker Image
run: |
make build