more debugging logs to ssh steps
This commit is contained in:
parent
2c9290ba88
commit
fc52364f75
1 changed files with 21 additions and 5 deletions
|
@ -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" \
|
||||
|
|
Loading…
Add table
Reference in a new issue