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 bda8946 commit 0b06aed
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/2.0-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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-learner-text-eval
./deploy.sh

0 comments on commit 0b06aed

Please sign in to comment.