Merge pull request #152 from AkshataKatwal16/admin #11
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 OBLF admin Server | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
OBLF-ADMIN-DEPLOYMENT: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Deploy Stack | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST_NAME_OBLF }} | |
username: ${{ secrets.USERNAME_OBLF }} | |
key: ${{ secrets.EC2_SSH_KEY_OBLF }} | |
port: ${{ secrets.PORT_OBLF }} | |
script: | | |
cd ${{ secrets.TARGET_DIR_OBLF }} | |
if [ -f .env ]; then | |
rm .env | |
fi | |
echo "${{ secrets.OBLF_ENV }}" > .env | |
ls -ltra | |
./deploy.sh |