Update CI-CD.yml with new deployments env values #261
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6490:6379 | |
postgres: | |
image: postgres:14 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: givethio | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5446:5432 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.14.0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
- name: Run migrations | |
run: npm run db:migrate:run:test | |
- name: Run tests | |
run: npm run test | |
publish: | |
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging' | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Build image and push to GitHub Packages | |
uses: docker/build-push-action@v1 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ github.token }} | |
registry: ghcr.io | |
repository: giveth/notification-center | |
add_git_labels: true | |
# Add branch name to docker image tag @see{@link https://github.com/docker/build-push-action/tree/releases/v1#tag_with_ref} | |
tag_with_ref: true | |
# Add commit hash to docker image tag @see{@link https://github.com/docker/build-push-action/tree/releases/v1#tag_with_sha} | |
tag_with_sha: true | |
deploy: | |
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/main'|| github.ref == 'refs/heads/staging' | |
needs: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Staging deploy | |
if: github.ref == 'refs/heads/staging' | |
uses: garygrossgarten/[email protected] | |
with: | |
command: cd notification-center && git checkout staging && git pull && docker-compose -f docker-compose-staging.yml pull && docker-compose -f docker-compose-staging.yml down && docker-compose -f docker-compose-staging.yml up -d && docker image prune -a --force; | |
host: ${{ secrets.STAGING_HOST_ALL }} | |
username: ${{ secrets.STAGING_USERNAME_ALL }} | |
privateKey: ${{ secrets.STAGING_PRIVATE_KEY_ALL}} | |
- name: Production deploy | |
if: github.ref == 'refs/heads/main' | |
uses: garygrossgarten/[email protected] | |
with: | |
command: cd notification-center && git checkout main && git pull && docker-compose -f docker-compose-production.yml pull && docker-compose -f docker-compose-production.yml down && docker-compose -f docker-compose-production.yml up -d && docker image prune -a --force; | |
host: ${{ secrets.PROD_HOST_ALL }} | |
username: ${{ secrets.PROD_USERNAME_ALL }} | |
privateKey: ${{ secrets.PROD_PRIVATE_KEY_ALL}} | |
deploy-k8s: | |
if: github.ref == 'refs/heads/main'|| github.ref == 'refs/heads/staging' | |
needs: publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@master | |
- name: Deploy to Staging Cluster | |
if: github.ref == 'refs/heads/staging' | |
uses: steebchen/[email protected] | |
with: # defaults to latest kubectl binary version | |
config: ${{ secrets.KUBE_CONFIG }} | |
command: rollout restart deployments/notification-center -n backend | |
- name: Verify Staging Deployment | |
if: github.ref == 'refs/heads/staging' | |
uses: steebchen/[email protected] | |
with: | |
config: ${{ secrets.KUBE_CONFIG }} | |
version: v1.24.2 # specify kubectl binary version explicitly | |
command: rollout status deployments/notification-center -n backend |