generated from nyu-software-engineering/final-project
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (57 loc) · 1.92 KB
/
webApp.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Web App CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Build and Test Web Application
run: |
cd web-app
docker build -t web-app .
docker run --rm web-app python -m unittest discover tests
push-to-docker-hub:
needs: build-and-test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Check if secrets are empty
run: |
if [ -z "${{ secrets.DOCKER_USERNAME }}" ] || [ -z "${{ secrets.DOCKER_PASSWORD }}" ]; then
echo "One of the secrets is empty!"
else
echo "Secrets are not empty."
fi
- name: Login to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Push Web App to Docker Hub
run: |
cd web-app
docker build -t web-app .
docker tag web-app ${{ secrets.DOCKER_USERNAME }}/web-app:latest
docker push ${{ secrets.DOCKER_USERNAME }}/web-app:latest
deploy:
needs: push-to-docker-hub
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DigitalOcean Container Registry
run: doctl registry login --expiry-seconds 600
- name: Build and Push Web App Image
run: |
cd web-app
docker build -t registry.digitalocean.com/cs-474-project-5/web-app:latest .
docker push registry.digitalocean.com/cs-474-project-5/web-app:latest
- name: Deploy to App Platform
run: doctl apps create --spec .do/app.yaml