Some checks failed
Build / build (pull_request) Failing after 32s
- add Makefile - add gitea workflows - add Dockerfile - pass through trusted ca certificates
27 lines
554 B
YAML
27 lines
554 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
|
|
|
|
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
|