Skip to content

Commit 98eda9d

Browse files
committed
Replace test script with timestamp file creation for deployment verification
1 parent fb726ef commit 98eda9d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,10 @@ jobs:
9494
# Run deploy script with migrations
9595
./bin/deploy-with-migrations.sh
9696
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"
97+
# Create a timestamp file to verify deployment
98+
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"
99101
env:
100102
DEPLOY_REMOTE_HOST: 104.36.23.197
101103
DEPLOY_REMOTE_PORT: 2048

0 commit comments

Comments
 (0)