Added gitea CI/CD configuration
Some checks failed
Create Docker Image / Build Docker Image (push) Failing after 11s

This commit is contained in:
Deon George 2024-04-06 10:58:52 +11:00
parent f64cc08c89
commit 37523abc72

View File

@ -41,7 +41,7 @@ jobs:
echo "++ PWD" && pwd
echo "++ ls" && ls -al
echo "++ workspace" && ls ${{ gitea.workspace }}
echo "++ host is ${{ gitea.host }}"
echo "++ host is ${{ gitea.server_url }}"
- name: Build
run: |
@ -49,7 +49,7 @@ jobs:
if [ -f init ]; then chmod 500 init; fi
#([ -z "$REFRESH" -a -f build-cache/${CI_COMMIT_REF_SLUG} ]) && docker load < build-cache/${CI_COMMIT_REF_SLUG} || true
#rm build-cache/* || true
docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} -t ${{ env.GITHUB_REPOSITORY }}:{{ $env.VERSION }}
docker build ${HTTP_PROXY:+--build-arg HTTP_PROXY=${HTTP_PROXY}} -t ${{ env.GITHUB_REPOSITORY }}:${{ env.VERSION }}
docker push ${CI_REGISTRY_IMAGE}:${VERSIONARCH}
docker save ${CI_REGISTRY_IMAGE}:${VERSIONARCH} > build-cache/${CI_COMMIT_REF_SLUG}