-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 1.21 KB
/
deploy.yml
File metadata and controls
37 lines (32 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Deploy to Defang
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deployment Status
run: |
echo "🎉 Hackd - AI-Powered Hacker Matching Platform"
echo "📝 Deployment temporarily disabled as Hack the North 2024 has ended"
echo "🚀 Infrastructure ready - can be re-enabled anytime"
echo "✅ All deployment configs validated and working"
echo ""
echo "To re-enable deployment:"
echo "1. Uncomment the Defang deployment steps below"
echo "2. Configure secrets: DEFANG_ACCESS_TOKEN, GITHUB_TOKEN, COHERE_API_KEY"
echo "3. Set NEXT_PUBLIC_CONVEX_URL in repository secrets"
# Deployment steps - Ready to uncomment when needed
# - name: Deploy to Defang
# uses: DefangLabs/defang-github-action@v1.1.0
# with:
# access-token: ${{ secrets.DEFANG_ACCESS_TOKEN }}
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
# NEXT_PUBLIC_CONVEX_URL: ${{ secrets.NEXT_PUBLIC_CONVEX_URL }}