Update readme.md

This commit is contained in:
jansel 2024-12-14 19:04:24 +00:00
parent 3fa1948ed2
commit e377ca9ff9

View file

@ -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