Working on CI/CD
This commit is contained in:
parent
fe9fa238e1
commit
3e0a84cd65
26
.github/workflows/deploy.yml
vendored
26
.github/workflows/deploy.yml
vendored
@ -20,10 +20,22 @@ jobs:
|
|||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_TOKEN }}
|
password: ${{ secrets.DOCKER_TOKEN }}
|
||||||
|
|
||||||
- name: Build and push Docker images
|
|
||||||
run: |
|
- name: Build and push Docker frontend image
|
||||||
docker-compose build
|
uses: docker/build-push-action@v3
|
||||||
docker-compose push
|
with:
|
||||||
|
context: ./frontend
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: azpect3120/file.gophernest.frontend:latest
|
||||||
|
|
||||||
|
- name: Build and push Docker backend image
|
||||||
|
uses: docker/build-push-action@v3
|
||||||
|
with:
|
||||||
|
context: ./backend
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: azpect3120/file.gophernest.backend:latest
|
||||||
|
|
||||||
- name: Deploy to server
|
- name: Deploy to server
|
||||||
uses: appleboy/ssh-action@v1.2.1
|
uses: appleboy/ssh-action@v1.2.1
|
||||||
@ -32,9 +44,9 @@ jobs:
|
|||||||
username: ${{ secrets.SERVER_USER }}
|
username: ${{ secrets.SERVER_USER }}
|
||||||
password: ${{ secrets.SERVER_PASSWORD }}
|
password: ${{ secrets.SERVER_PASSWORD }}
|
||||||
script: |
|
script: |
|
||||||
docker-compose -f /path/to/your/docker-compose.yml down
|
docker-compose -f /home/azpect/Applications/file.gophernest/docker-compose.yml down
|
||||||
docker-compose -f /path/to/your/docker-compose.yml pull
|
docker-compose -f /home/azpect/Applications/file.gophernest/docker-compose.yml pull
|
||||||
docker-compose -f /path/to/your/docker-compose.yml up -d
|
docker-compose -f /home/azpect/Applications/file.gophernest/docker-compose.yml up -d
|
||||||
env:
|
env:
|
||||||
FILE_GOPHERNEST_USER: ${{ secrets.FILE_GOPHERNEST_USER }}
|
FILE_GOPHERNEST_USER: ${{ secrets.FILE_GOPHERNEST_USER }}
|
||||||
FILE_GOPHERNEST_PASSWORD: ${{ secrets.FILE_GOPHERNEST_PASSWORD }}
|
FILE_GOPHERNEST_PASSWORD: ${{ secrets.FILE_GOPHERNEST_PASSWORD }}
|
||||||
|
|||||||
Reference in New Issue
Block a user