-
Notifications
You must be signed in to change notification settings - Fork 211
50 lines (45 loc) · 1.65 KB
/
cd.yml
File metadata and controls
50 lines (45 loc) · 1.65 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: Continuous Deployment (Prod)
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Docker login
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push server
uses: docker/build-push-action@v4
with:
context: .
file: ./docker/Dockerfile.api
push: true
tags: 100xdevs/1ai-server:${{ github.sha }}
- name: Build and push frontend
uses: docker/build-push-action@v4
with:
context: .
file: ./docker/Dockerfile.web
push: true
tags: 100xdevs/1ai-frontend:${{ github.sha }}
- name: Clone production-ops repo, update, and push
env:
PAT: ${{ secrets.PAT }}
run: |
git clone https://${PAT}@github.com/codes30/production-ops.git
cd production-ops
sed -i 's|image: 100xdevs/1ai-server:.*|image: 100xdevs/1ai-server:${{ github.sha }}|' prod/1ai/server.yml
sed -i 's|image: 100xdevs/1ai-frontend:.*|image: 100xdevs/1ai-frontend:${{ github.sha }}|' prod/1ai/frontend.yml
git config user.name "GitHub Actions Bot"
git config user.email "actions@github.com"
git add prod/1ai/server.yml prod/1ai/frontend.yml
git commit -m "Update 1ai image to ${{ github.sha }}"
git push https://${PAT}@github.com/codes30/production-ops.git main