From 26e8f2329c12110478c4e82eadb5aabafd569b95 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Thu, 30 Jul 2026 07:21:35 +0200 Subject: [PATCH] repo fix --- .woodpecker.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 8b03621..d6c619a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,20 +7,11 @@ steps: - name: build image: golang:1.26.3-alpine - environment: - GOPRIVATE: git.teletypegames.org/* - GIT_SSH_KEY: - from_secret: git_ssh_key commands: - - apk add --no-cache zip make curl git openssh-client - - mkdir -p ~/.ssh - - echo "$GIT_SSH_KEY" > ~/.ssh/id_ed25519 - - chmod 600 ~/.ssh/id_ed25519 - - ssh-keyscan -p 2222 git.teletypegames.org >> ~/.ssh/known_hosts 2>/dev/null - - git config --global url."ssh://git@git.teletypegames.org:2222/".insteadOf "https://git.teletypegames.org/" + - apk add --no-cache zip make curl git # The go.mod may point at a local ../pncdsl checkout (see README); # in CI clone the framework next to the workspace so it resolves. - - if grep -q '=> \.\./pncdsl' go.mod; then git clone ssh://git@git.teletypegames.org:2222/games/pncdsl ../pncdsl; fi + - if grep -q '=> \.\./pncdsl' go.mod; then git clone https://git.teletypegames.org/games/pncdsl ../pncdsl; fi - make ci-export - name: artifact