Compare commits

..

1 Commits

Author SHA1 Message Date
de3442c9ba feat: initial commit
Some checks failed
Build / build (pull_request) Failing after 2s
- add Makefile
- add gitea workflows
- add Dockerfile
- pass through trusted ca certificates
2024-09-08 01:14:06 +10:00
2 changed files with 10 additions and 6 deletions

View File

@ -7,7 +7,7 @@ jobs:
build:
runs-on: almalinux-8
container:
image: docker:dind
image: git.query.consul/unkin/almalinux8:latest
options: --privileged
volumes:
- /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt
@ -16,8 +16,10 @@ jobs:
steps:
- name: Set up environment
run: |
apk add --no-cache make bash git nodejs
update-ca-certificates
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
dnf install -y make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3

View File

@ -9,7 +9,7 @@ jobs:
build:
runs-on: almalinux-8
container:
image: docker:dind
image: git.query.consul/unkin/almalinux8:latest
options: --privileged
volumes:
- /etc/pki/tls/certs/ca-bundle.crt:/etc/pki/tls/certs/ca-bundle.crt
@ -18,8 +18,10 @@ jobs:
steps:
- name: Set up environment
run: |
apk add --no-cache make bash git nodejs
update-ca-certificates
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
dnf install -y make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3