-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 1.76 KB
/
deploy.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
55
56
57
58
59
60
61
62
name: CI/CD Pipeline
run-name: Deploy to Unraid Local by @${{ github.actor }}
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Build with Gradle
run: ./gradlew build
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push Docker image
run: |
pwd
docker build -t ${{ secrets.DOCKER_HUB_USERNAME }}/writeshite-backend:latest ./docker/Dockerfile
docker push ${{ secrets.DOCKER_HUB_USERNAME }}/writeshite-backend:latest
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: SSH into Unraid server and build frontend
uses: appleboy/[email protected]
with:
host: ${{ secrets.UNRAID_HOST }}
username: ${{ secrets.UNRAID_USER }}
password: ${{ secrets.UNRAID_PASSWORD }}
script: |
cd /mnt/user/appdata/writeshite/frontend
npm install
npm run build
- name: SSH into Unraid server and pull the latest Docker image
uses: appleboy/[email protected]
with:
host: ${{ secrets.UNRAID_HOST }}
username: ${{ secrets.UNRAID_USER }}
password: ${{ secrets.UNRAID_PASSWORD }}
script: |
docker pull ${{ secrets.DOCKER_HUB_USERNAME }}/writeshite-backend:latest
docker-compose -f /mnt/user/appdata/writeshite/docker-compose.yml up -d