update client id #19
Workflow file for this run
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
on: | |
push: | |
branches: | |
- main | |
- feature/* | |
jobs: | |
build: | |
name: Build, push, and deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Export project name | |
run: export PROJECT_NAME=$(echo ${{ github.repository }} | cut -d / -f2); echo $PROJECT_NAME | |
- name: Checkout main | |
uses: actions/checkout@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Build Docker image and push to ghcr.io registry | |
id: docker_build | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: ghcr.io/sonamsamdupkhangsar/next-auth-example:latest | |
secrets: | | |
USERNAME=${{ github.actor }} | |
PERSONAL_ACCESS_TOKEN=${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Install doctl | |
uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- name: Save DigitalOcean kubeconfig with short-lived credentials | |
run: doctl kubernetes cluster kubeconfig save --expiry-seconds 600 ${{ secrets.K8CLUSTER_NAME }} | |
- name: Deploy to k8 cluster | |
run: | | |
export PROJECT_NAME=$(echo ${{ github.repository }} | cut -d / -f2) | |
helm repo add sonam https://sonamsamdupkhangsar.github.io/sonam-helm-chart/ | |
helm upgrade --install --timeout 5m0s \ | |
--set "image.repository=ghcr.io/${{github.repository}}" \ | |
--set "image.tag=latest" \ | |
--set "project=$PROJECT_NAME" \ | |
$PROJECT_NAME \ | |
sonam/mychart -f values-backend.yaml --version 0.1.26 --namespace=backend | |