From e377ca9ff93d0c6c038150768ce41f548a9cfca8 Mon Sep 17 00:00:00 2001 From: jansel Date: Sat, 14 Dec 2024 19:04:24 +0000 Subject: [PATCH] Update readme.md --- readme.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/readme.md b/readme.md index 8cffcbd..43a96cb 100644 --- a/readme.md +++ b/readme.md @@ -4,18 +4,6 @@ When using the Actions on this Gitea Server, please make sure to follow the impo All codeblocks here are examples. -In the jobs, the first step must be to disable SSL as a temporary fix, as the action will pull the repo through a local link and has no valit CA for the SSL certificate, so it should look like this: -```yml -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Disable SSL verify (Temporary Fix) - run: git config --global http.sslVerify false - - - uses: actions/checkout@v4 -``` - When working with the Container Registry (f.ex. for docker images) do not use the docker/buildx-action directly after the login to the registry, instead do it like this (the registry url is a must have!): ```yml - name: Login to Gitea Registry