-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (50 loc) · 1.24 KB
/
main.yml
File metadata and controls
54 lines (50 loc) · 1.24 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
name: Node.js CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.x'
- run: |
cp .env.example .env
npm install
npm run test
release:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.x'
- run: |
cp .env.example .env
npm install
ls -a
- name: Docker push
env:
DOCKER_USER: ${{secrets.DOCKER_USERNAME}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
IMAGE: zero101010/monprospecteur:latest
run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
docker build -t $IMAGE .
docker push $IMAGE
deploy:
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: get-credentials
uses: google-github-actions/get-gke-credentials@main
with:
cluster_name: zeus
location: us-central1-c
credentials: ${{ secrets.gcp_credentials }}
- id: get-nodes
run: kubectl rollout restart deployment/api-mongo