Skip to content

Commit

Permalink
Create dev-PYM.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhilashKD authored Mar 7, 2025
1 parent 1323edb commit 130b2cb
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/dev-PYM.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: DEVPYM-Deployment Pratham-OU Mumbai Region
on:
push:
branches:
- youth-management
jobs:
DEVPYM-DEPLOYMENT:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Extract Branch Name
run: echo "BRANCH_NAME=${GITHUB_REF#refs/heads/}" >> $GITHUB_ENV

- name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST_NAME_DEVPYM }}
username: ${{ secrets.USERNAME_DEVPYM }}
key: ${{ secrets.EC2_SSH_KEY_DEVPYM }}
port: ${{ secrets.PORT_DEVPYM }}
script: |
cd ${{ secrets.TARGET_DIR_DEVPYM }}
if [ -f .env ]; then
rm .env
fi
echo "${{ secrets.DEVPYM_ENV }}" > .env
ls -ltra
./deploy.sh ${{ env.BRANCH_NAME }}

0 comments on commit 130b2cb

Please sign in to comment.