-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.56 KB
/
main.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Build and Deploy
on:
push:
branches:
- main # 触发 CI 的分支
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # 设置你需要的 Node.js 版本
- name: Install dependencies
run: npm install
- name: Build application
run: npm run build
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build Docker image
run: docker build . -t ${{ secrets.DOCKER_HUB_USERNAME }}/base64-tool:latest
- name: Push Docker image
run: docker push ${{ secrets.DOCKER_HUB_USERNAME }}/base64-tool:latest
- name: Deploy to server
uses: appleboy/ssh-action@v0.1.0
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.USER_NAME }}
password: ${{ secrets.USER_PASS }}
script: |
echo "Pulling Docker image and running container..."
docker pull ${{ secrets.DOCKER_HUB_USERNAME }}/base64-tool:latest
docker stop base64-tool || true
docker rm base64-tool || true
docker run -d --name base64-tool -p 8080:3000 ${{ secrets.DOCKER_HUB_USERNAME }}/base64-tool:latest