diff --git a/.gitea/workflows/production-deploy.yml b/.gitea/workflows/production-deploy.yml index 95fb7c25..b6d44921 100644 --- a/.gitea/workflows/production-deploy.yml +++ b/.gitea/workflows/production-deploy.yml @@ -34,11 +34,11 @@ jobs: else # Try public HTTPS (works if repository is public) git clone --depth 1 --branch "$REF_NAME" \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo || \ # Fallback: Try to use Gitea's internal runner access git clone --depth 1 \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo fi @@ -132,11 +132,11 @@ jobs: else # Try public HTTPS (works if repository is public) git clone --depth 1 --branch "$REF_NAME" \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo || \ # Fallback: Try to use Gitea's internal runner access git clone --depth 1 \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo fi @@ -514,11 +514,11 @@ jobs: else # Try public HTTPS (works if repository is public) git clone --depth 1 --branch "$REF_NAME" \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo || \ # Fallback: Try to use Gitea's internal runner access git clone --depth 1 \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo fi diff --git a/.gitea/workflows/security-scan.yml b/.gitea/workflows/security-scan.yml index a01fff0b..92053be7 100644 --- a/.gitea/workflows/security-scan.yml +++ b/.gitea/workflows/security-scan.yml @@ -32,11 +32,11 @@ jobs: else # Try public HTTPS (works if repository is public) git clone --depth 1 --branch "$REF_NAME" \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo || \ # Fallback: Try to use Gitea's internal runner access git clone --depth 1 \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo fi diff --git a/.gitea/workflows/test-registry.yml b/.gitea/workflows/test-registry.yml index 5fbb0ae2..dddb98e4 100644 --- a/.gitea/workflows/test-registry.yml +++ b/.gitea/workflows/test-registry.yml @@ -39,10 +39,10 @@ jobs: /workspace/repo else git clone --depth 1 --branch "$REF_NAME" \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo || \ git clone --depth 1 \ - "https://repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://git.michaelschiemer.de/${REPO}.git" \ /workspace/repo fi diff --git a/.gitea/workflows/update-production-secrets.yml b/.gitea/workflows/update-production-secrets.yml index 6443af78..6b839a1c 100644 --- a/.gitea/workflows/update-production-secrets.yml +++ b/.gitea/workflows/update-production-secrets.yml @@ -30,7 +30,7 @@ jobs: if [ -n "${{ secrets.CI_TOKEN }}" ]; then git clone --depth 1 --branch "$REF_NAME" \ - "https://${{ secrets.CI_TOKEN }}@repository.michaelschiemer.de:5000/${REPO}.git" \ + "https://${{ secrets.CI_TOKEN }}@git.michaelschiemer.de/${REPO}.git" \ /workspace/repo else git clone --depth 1 --branch "$REF_NAME" \