Merge pull request #275 from alwinsimon/v1 #6
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
# ========================================= CD - Deploy - Auth Service ========================================= | |
name: CD - Deploy - Auth Service | |
on: | |
push: | |
branches: | |
- production | |
paths: | |
- "auth/**" | |
jobs: | |
Auth-Service-CD-Pipeline: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Build Image and push to Docker registry | |
- run: cd auth && docker build -t alwinsimon/bookmyseat-auth . | |
- run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
- run: docker push alwinsimon/bookmyseat-auth | |
# Restart Deployment in K8s cluster deployed in Digital Ocean | |
- uses: digitalocean/action-doctl@v2 | |
with: | |
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} | |
- run: doctl kubernetes cluster kubeconfig save ${{ secrets.DIGITALOCEAN_CLUSTER_ID }} | |
- run: kubectl rollout restart deployment auth-depl |