-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (41 loc) · 1.27 KB
/
deploy-dev.yml
File metadata and controls
50 lines (41 loc) · 1.27 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
name: Deploy to Development
on:
push:
branches:
- develop
env:
DOCKER_IMAGE: ${{ secrets.DOCKER_USERNAME }}/billilge-client
CAPROVER_APP: dev
jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: development
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create .env file
run: echo "${{ secrets.DEV_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 }}:dev
${{ env.DOCKER_IMAGE }}:dev-${{ github.sha }}
cache-from: type=gha,scope=dev
cache-to: type=gha,mode=max,scope=dev
- name: Deploy to CapRover
uses: caprover/deploy-from-github@v1.1.2
with:
server: ${{ secrets.CAPROVER_SERVER }}
app: ${{ env.CAPROVER_APP }}
token: ${{ secrets.CAPROVER_DEV_APP_TOKEN }}
image: ${{ env.DOCKER_IMAGE }}:dev