Files
CI-CD/.gitea/workflows/deploy.yml
T
Shuai 5dc277f16a
Deploy Frontend / deploy (push) Failing after 1m37s
test1
2026-06-19 21:53:02 +08:00

21 lines
368 B
YAML

name: Deploy Frontend
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Secret
run: |
if [ -z "${{ secrets.SSH_PRIVATE_KEY }}" ]; then
echo "SSH_PRIVATE_KEY is empty"
exit 1
fi
echo "SSH_PRIVATE_KEY exists"