Skip to content

Commit 3309c56

Browse files
authored
Merge pull request #20 from airchains-network/testnet/overview
Testnet/overview --> development
2 parents b5a0bb7 + 46771ab commit 3309c56

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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!"

src/components/Docs/introduction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
/>

static/img/exercise2.png

124 KB
Loading

0 commit comments

Comments
 (0)