File tree Expand file tree Collapse file tree 3 files changed +27
-1
lines changed
Expand file tree Collapse file tree 3 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Auto Deploy Airchains Docs
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ deploy :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Checkout Repository
14+ uses : actions/checkout@v3
15+
16+ - name : Deploy to Server
17+ uses : appleboy/ssh-action@master
18+ with :
19+ host : 148.113.38.220
20+ username : ubuntu
21+ key : ${{ secrets.DEPLOY_SSH_KEY }}
22+ script : |
23+ echo "🚀 Starting remote deployment..."
24+ chmod +x /home/ubuntu/deploy.sh
25+ /home/ubuntu/deploy.sh
26+ echo "✅ Deployment complete!"
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ const IntroductionComponent = () => {
118118 < Link to = { `/develop/exercise` } className = "docs_card_with_image" >
119119 < div >
120120 < img
121- src = "/img/exercise .png"
121+ src = "/img/exercise2 .png"
122122 alt = "airchains"
123123 className = "junction_logo"
124124 />
You can’t perform that action at this time.
0 commit comments