-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (42 loc) · 1.45 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
name: short tracker frontend workflow
on: [push]
env:
FRONTEND_IMAGE: ${{ secrets.DOCKER_USERNAME }}/short_tracker_frontend:v1
jobs:
build_and_push_to_docker_hub:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/develop'
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Login to Docker
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Push frontend to Docker Hub
uses: docker/build-push-action@v4
with:
push: true
file: ./Dockerfile
tags: ${{ env.FRONTEND_IMAGE }}
deploy:
runs-on: ubuntu-latest
needs: build_and_push_to_docker_hub
steps:
- name: executing remote ssh commands to deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USER }}
key: ${{ secrets.SSH_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
script: |
sudo docker-compose stop
sudo docker pull ${{ env.FRONTEND_IMAGE }}
sudo docker-compose up -d
sudo docker image prune -f