Skip to content

Commit

Permalink
Create oblf-admin-deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ishan-ttpl authored Aug 20, 2024
1 parent d2ab242 commit b402ebc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/oblf-admin-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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

0 comments on commit b402ebc

Please sign in to comment.