Skip to content

Commit

Permalink
Create 2.0-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
prasadharke authored Sep 30, 2024
1 parent 8aee94c commit 40583b3
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/2.0-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Dev Deployment

on:
push:
branches:
- release-2.0-dev
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
-
name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.DEV_HOST }}
username: ${{ secrets.DEV_USERNAME }}
key: ${{ secrets.DEV_SSH_PRIVATE_KEY }}
port: ${{ secrets.PORT }}
script: |
cd /home/sudeepr/git/all-orchestration-service
./deploy.sh

0 comments on commit 40583b3

Please sign in to comment.