diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index ba0c7e3..53148d2 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -7,15 +7,11 @@ on: jobs: update-feed: runs-on: ubuntu-latest - container: - image: alpine:latest steps: - name: Install Dependencies run: | - # Ensure we have the necessary tools to install packages apk update apk add --no-cache \ - build-base \ openssh-client \ git \ curl \ @@ -25,12 +21,32 @@ jobs: env: SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }} run: | + # Debug: Check if SSH_PRIVATE_KEY is set + if [ -z "$SSH_PRIVATE_KEY" ]; then + echo "Error: SSH_PRIVATE_KEY is not set" + exit 1 + fi + + # Prepare SSH directory mkdir -p ~/.ssh + chmod 700 ~/.ssh + + # Write SSH key, with additional error checking echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa + + # Verify key file + if [ ! -f ~/.ssh/id_rsa ]; then + echo "Error: Failed to create SSH private key file" + exit 1 + fi + + # Add host key ssh-keyscan git.mcdevitt.tech >> ~/.ssh/known_hosts - ssh-keygen -F git.mcdevitt.tech || true + # Test SSH connection + ssh -vT git@git.mcdevitt.tech || true + - name: Checkout repository run: | GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" \