We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb726ef commit 98eda9dCopy full SHA for 98eda9d
.github/workflows/deploy.yml
@@ -94,8 +94,10 @@ jobs:
94
# Run deploy script with migrations
95
./bin/deploy-with-migrations.sh
96
97
- # Run test script to verify deployment
98
- ssh -p 2048 [email protected] "cd $DEPLOY_REMOTE_DIR && chmod +x bin/test-github-actions.sh && ./bin/test-github-actions.sh"
+ # Create a timestamp file to verify deployment
+ echo "Creating timestamp file to verify deployment..."
99
+ TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S")
100
+ ssh -p 2048 [email protected] "echo 'GitHub Actions deployment completed at $TIMESTAMP' > $DEPLOY_REMOTE_DIR/github-actions-test-$(date +%Y%m%d%H%M%S).txt"
101
env:
102
DEPLOY_REMOTE_HOST: 104.36.23.197
103
DEPLOY_REMOTE_PORT: 2048
0 commit comments