Deployment on the Pratham-dev Frontend Server #376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |