Skip to content

Commit

Permalink
Create auth.deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
iam-abin authored Mar 9, 2024
1 parent 00c0bf9 commit 12d429d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/auth.deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# name: deploy-auth

# on:
# push:
# branches:
# - master
# paths:
# - 'auth/**'

# jobs:
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - run: docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
# env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# - run: cd auth && docker build -t abinv/auth .
# - run: docker push abinv/auth
# - uses: digitalocean/action-doctl@v2
# with:
# token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
# - run: doctl kubernetes cluster kubeconfig save elevate-cluster
# - run: kubectl rollout restart deployment auth-depl

0 comments on commit 12d429d

Please sign in to comment.