Skip to content

Commit

Permalink
ci: oci-deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin52 committed Dec 5, 2023
1 parent 4411709 commit bbfd573
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/oci-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Deploy to OCI

on:
push:
branches:
- oci-deploy-test
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Cache node modules # node modules 캐싱
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-master-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: Generate Environment Variables File for Production
run: |
echo "REACT_APP_API=$REACT_APP_API" >> .env
echo "REACT_APP_WISH=$REACT_APP_WISH" >> .env
echo "REACT_APP_E_BOOK_LIBRARY=$REACT_APP_E_BOOK_LIBRARY" >> .env
echo "REACT_APP_SUGGESTION=$REACT_APP_SUGGESTION" >> .env
echo "REACT_APP_GA_ID=$REACT_APP_GA_ID" >> .env
echo "PORT=$PORT" >> .env
env:
REACT_APP_API: ${{ secrets.REACT_APP_API }}
REACT_APP_WISH: ${{ secrets.REACT_APP_WISH }}
REACT_APP_E_BOOK_LIBRARY: ${{ secrets.REACT_APP_E_BOOK_LIBRARY }}
REACT_APP_SUGGESTION: ${{ secrets.REACT_APP_SUGGESTION }}
REACT_APP_GA_ID: ${{ secrets.REACT_APP_GA_ID }}
PORT: ${{ secrets.PORT }}

- name: Install Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.x

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Deploy to OCI
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.OCI_IP }}
username: ${{ secrets.OCI_USER }}
key: ${{ secrets.OCI_KEY }}
port: ${{ secrets.OCI_PORT }}
script: |
cd /home/opc/frontend
echo "REACT_APP_API=${{ secrets.REACT_APP_API }}
REACT_APP_WISH=${{ secrets.REACT_APP_WISH }}
REACT_APP_E_BOOK_LIBRARY=${{ secrets.REACT_APP_E_BOOK_LIBRARY }}
REACT_APP_SUGGESTION=${{ secrets.REACT_APP_SUGGESTION }}
REACT_APP_GA_ID=${{ secrets.REACT_APP_GA_ID }}
PORT=${{ secrets.PORT }}
" > .env
git pull
cd client
pnpm install
pnpm run build
mv build ../backend/
rm .env

0 comments on commit bbfd573

Please sign in to comment.