Merge pull request #5 from Onboardbase/newdesign #4
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
on: | |
push: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploying to Dev | |
uses: appleboy/[email protected] | |
if: github.ref == 'refs/heads/dev' | |
with: | |
host: ${{ secrets.DEV_SERVER }} | |
username: ${{ secrets.DEV_USER }} | |
key: ${{ secrets.DEV_SSH_KEY }} | |
script: | | |
export NVM_DIR=~/.nvm | |
source ~/.nvm/nvm.sh | |
cd /root/apps/securelog-rsc-example | |
git pull origin dev | |
yarn install | |
onboardbase run -c 'yarn build' | |
cp -r dist/* /var/www/secure-example | |
systemctl reload nginx | |
- name: Deploying to prod | |
uses: appleboy/[email protected] | |
if: github.ref == 'refs/heads/main' | |
with: | |
host: ${{ secrets.PROD_SERVER }} | |
username: ${{ secrets.PROD_USER }} | |
key: ${{ secrets.PROD_SSH_KEY }} | |
script: | | |
export NVM_DIR=~/.nvm | |
source ~/.nvm/nvm.sh | |
cd /root/apps/securelog-rsc-example | |
git pull origin main | |
yarn install | |
onboardbase run -c 'yarn build' | |
cp -r dist/* /var/www/secure-example | |
systemctl reload nginx |