-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (21 loc) · 962 Bytes
/
ci.yaml
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: client CI
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Log in to GitHub Container Registry
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
- run: docker build -t ghcr.io/zeyneperinc/client:latest . -f /home/runner/work/mernexample-client/mernexample-client/Dockerfile
- run: docker push ghcr.io/zeyneperinc/client:latest
deploy:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- run: helm upgrade -i client -n mern /home/runner/work/mernexample-client/mernexample-client/helm/