Skip to content

Commit

Permalink
Create develop-frontend.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
PrasadAthani authored Sep 4, 2024
1 parent 50cac66 commit 5644844
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/develop-frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Deploy to DEV
on:
push:
branches:
- develop
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: Copy .env file
env:
ENV_FILE_CONTENT: ${{ secrets.env }}
run: echo "$ENV_FILE_CONTENT" > .env

- name: Generate React Build
run: |
yarn install
yarn build
- name: Show PWD
run: |
echo "Current Working Directory:"
pwd
- name: Create Directory
run: mkdir my_directory

- name: List Contents
run: |
echo "Contents of the current directory (in reverse order):"
ls -lr
- name: Deploy to Server 1
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.EC2_SSH_KEY_NEWALTV1_DEV }}
REMOTE_HOST: ${{ secrets.HOST_DNS_NEWALTV1_DEV }}
REMOTE_USER: ${{ secrets.USERNAME_NEWALTV1_DEV }}


- name: Set up SSH key
run: |
mkdir -p ~/.ssh
echo "${{ secrets.EC2_SSH_KEY_NEWALTV1_DEV }}" > ~/.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_NEWALTV1_DEV }} >> ~/.ssh/known_hosts
- name: Copy Package
run: |
sh ./scripts/pack-prod-build.sh
rsync shiksha-ui.tar ${{ secrets.USERNAME_NEWALTV1_DEV }}@${{ secrets.HOST_DNS_NEWALTV1_DEV }}:/var/www/alt-dev.uniteframework.io/shiksha-ui.tar
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.HOST_DNS_NEWALTV1_DEV }}
username: ${{ secrets.USERNAME_NEWALTV1_DEV }}
key: ${{ secrets.EC2_SSH_KEY_NEWALTV1_DEV }}
script: |
cd /var/www/alt-dev.uniteframework.io/public
rm -rf *
cp ../shiksha-ui.tar ./
tar -xvf shiksha-ui.tar .
# - name: Notify on Slack channel
# uses: iRoachie/[email protected]
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_NEWALTV1_URL }}
# with:
# status: ${{ job.status }}
# if: ${{ always() }}






0 comments on commit 5644844

Please sign in to comment.