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:
|
jobs:
|
||||||
update-feed:
|
update-feed:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
|
||||||
image: alpine:latest
|
|
||||||
steps:
|
steps:
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
# Ensure we have the necessary tools to install packages
|
|
||||||
apk update
|
apk update
|
||||||
apk add --no-cache \
|
apk add --no-cache \
|
||||||
build-base \
|
|
||||||
openssh-client \
|
openssh-client \
|
||||||
git \
|
git \
|
||||||
curl \
|
curl \
|
||||||
|
@ -25,11 +21,31 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }}
|
SSH_PRIVATE_KEY: ${{ secrets.TOKEN_NAME }}
|
||||||
run: |
|
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
|
mkdir -p ~/.ssh
|
||||||
|
chmod 700 ~/.ssh
|
||||||
|
|
||||||
|
# Write SSH key, with additional error checking
|
||||||
echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa
|
echo "$SSH_PRIVATE_KEY" | tr -d '\r' > ~/.ssh/id_rsa
|
||||||
chmod 600 ~/.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-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
|
- name: Checkout repository
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue