Skip to content

Commit

Permalink
Create dev-pratham-deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhilashKD authored Oct 14, 2024
1 parent 58a7dde commit 8e8b1f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/dev-pratham-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deployment on the Pratham-dev Frontend Server
on:
workflow_dispatch:
jobs:
PRATHAM-DEV-DEPLOYMENT:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST_NAME_DEV }}
username: ${{ secrets.USERNAME_DEV }}
key: ${{ secrets.EC2_SSH_KEY_DEV }}
port: ${{ secrets.PORT_DEV }}
script: |
cd ${{ secrets.TARGET_DIR_DEV }}
if [ -f .env ]; then
rm .env
fi
echo "${{ secrets.DEV_ENV }}" > .env
ls -ltra
./deploy.sh

0 comments on commit 8e8b1f2

Please sign in to comment.