Added gitea CI/CD configuration
Create Docker Image / Build Docker Image (push) Successful in 10s Details
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s Details

This commit is contained in:
Deon George 2024-04-07 12:38:17 +10:00
parent 3d66afd02e
commit 8a4d4da641
1 changed files with 9 additions and 0 deletions

View File

@ -62,6 +62,15 @@ jobs:
needs: build
steps:
- name: Environment Setup
run: |
# If we have a proxy use it
if [ -n "${HTTP_PROXY}" ]; then echo "HTTP PROXY [${HTTP_PROXY}]"; sed -i -e s'/https/http/' /etc/apk/repositories; fi
# Some pre-reqs
apk add git curl nodejs
# Start docker
( dockerd --host=tcp://0.0.0.0:2375 --tls=false & ) && sleep 3
- name: Registry FQDN Setup
id: registry
run: |