Skip to content

Commit

Permalink
Create oblf-new.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PrasadAthani authored Feb 20, 2024
1 parent 8a2fdcc commit 28bf037
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions .github/workflows/oblf-new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
name: Deploy to DEV
on:
push:
branches:
- oblf-21stFeb
jobs:
build:
name: Generate Build and Deploy to DEV
# environment: PROD
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node Env
uses: actions/setup-node@v3
with:
node-version: 21.1.0

- name: Generate React Build
run: |
yarn install
yarn build
- name: Create Lerna Bundles for Submodules
run: |
sh ./scripts/pack-prod-build.sh
- name: Show PWD
run: |
echo "Current Working Directory:"
pwd
- name: List Contents
run: |
echo "Contents of the current directory (in reverse order):"
ls -lr
# - name: List Contents
# run: |
# echo "Contents of the dist directory (in reverse order):"
# cd /home/runner/work/shiksha-frontend/shiksha-frontend/dist
# ls -lr

- name: Deploy to Server 1
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY }}
REMOTE_HOST: ${{ secrets.HOST_DNS }}
REMOTE_USER: ${{ secrets.USERNAME }}
TARGET: ${{ secrets.TARGET_DIR }}

- name: Set up SSH key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.EC2_SSH_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
# Add the SSH key to the known_hosts file (replace hostname with your actual hostname)
ssh-keyscan -H ${{ secrets.HOST_DNS }} >> ~/.ssh/known_hosts
# - name: Deploy with rsync
# run: |
# rsync -avz -e "ssh -i ~/.ssh/id_rsa" ./dist/ ${{ secrets.USERNAME }}@${{ secrets.HOST_DNS }}:/home/ubuntu/prasad


- name: Copy Build Artifact using Rsync
run: rsync -avz -e "ssh -p ${{ secrets.PORT }}" shiksha-ui.tar ${{ secrets.USERNAME }}@${{ secrets.HOST_DNS }}:/home/prasad

- name: Unzip Artifact to Correct Locations to Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST_DNS }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.EC2_SSH_KEY }}
script: |
cd /home/prasad
tar -xvf shiksha-ui.tar -C /var/www/shiksha.uniteframework.io/new

0 comments on commit 28bf037

Please sign in to comment.