CI Failure: Missing deployment secrets (DEPLOY_HOST) #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
CI Failure Report
Workflow: Build and Deploy
Commit:
1bdfe43fd4Run: https://git.brads.house/intern/diary/actions/runs/1
Root Cause Analysis
The workflow
build-hugo.ymlfailed at step Deploy to server via SSH.Error Details
Investigation
The error message is from
ssh-keyscanbeing called without a host argument. This occurs when the secretDEPLOY_HOSTis empty or not configured in the repository secrets.Required Secrets
The workflow expects these secrets to be configured:
DEPLOY_HOST- SSH target hostname (MISSING - causes failure)DEPLOY_SSH_KEY- Private SSH key for deploymentDEPLOY_USER- SSH username for deploymentDEPLOY_PATH- Target directory on serverFORGEJO_TOKEN- Already configured (used successfully in previous step)Impact
pagesbranch successfullypagesbranch but not deployedRecommendation: @brad Add the missing repository secrets:
DEPLOY_HOST,DEPLOY_SSH_KEY,DEPLOY_USER, andDEPLOY_PATHto complete the SSH deployment workflow.