forked from KayvanShah1/taskaza
-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (76 loc) · 2.28 KB
/
deploy-backend.yml
File metadata and controls
93 lines (76 loc) · 2.28 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Build & deploy application to Render
on:
push:
branches:
- main
paths:
- "backend/**"
permissions:
contents: write
deployments: write
jobs:
test:
runs-on: ubuntu-latest
name: Test
env:
TSKZ_HTTP_API_KEY: ${{ secrets.TSKZ_HTTP_API_KEY }}
defaults:
run:
working-directory: backend
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Upgrade Pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run tests
run: pytest
docker-deploy:
name: Build and Push Docker Image
runs-on: ubuntu-latest
needs: test
environment:
name: docker_hub
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: Build and push image to Docker Hub
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: "{{defaultContext}}:backend"
file: Dockerfile
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/taskaza-api:${{ github.sha }}
cache-from: type=registry,ref=${{ secrets.DOCKER_HUB_USERNAME }}/taskaza-api:buildcache
cache-to: type=registry,ref=${{ secrets.DOCKER_HUB_USERNAME }}/taskaza-api:buildcache,mode=max
deploy-to-render:
name: Deploy to Render
runs-on: ubuntu-latest
needs: test
environment:
name: render
steps:
- name: Deploy to Render
uses: JorgeLNJunior/render-deploy@v1.4.5
with:
service_id: ${{ secrets.RENDER_SERVICE_ID }}
api_key: ${{ secrets.RENDER_API_KEY }}
github_deployment: true
deployment_environment: 'render'
github_token: ${{ secrets.GITHUB_TOKEN }}