-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (42 loc) · 1.31 KB
/
deploy.yml
File metadata and controls
51 lines (42 loc) · 1.31 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
name: Deploy to Internal Server
on:
push:
branches:
- develop
env:
DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/billilge-admin
CAPROVER_APP: admin
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create .env file
run: echo "${{ secrets.ENV_FILE }}" > .env.production
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
${{ env.DOCKER_IMAGE }}:prod
${{ env.DOCKER_IMAGE }}:prod-${{ github.sha }}
${{ env.DOCKER_IMAGE }}:latest
cache-from: type=gha,scope=prod
cache-to: type=gha,mode=max,scope=prod
- name: Deploy to CapRover
uses: caprover/deploy-from-github@v1.1.2
with:
server: ${{ secrets.CAPROVER_SERVER }}
app: ${{ env.CAPROVER_APP }}
token: ${{ secrets.CAPROVER_PROD_APP_TOKEN }}
image: ${{ env.DOCKER_IMAGE }}:prod