This repository has been archived on 2026-06-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docker-almalinux-buildrunner/.gitea/workflows/build.yaml
T
unkinben 213700bffa
Deploy / build (pull_request) Has been cancelled
Build / build (pull_request) Failing after 35s
feat: initial commit
- add Makefile
- add gitea workflows
- add Dockerfile
2024-09-08 00:56:06 +10:00

24 lines
385 B
YAML

name: Build
on:
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: docker:dind
options: --privileged
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