chore: Merge develop into main for deployment #3
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
name: Deploy React App | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Build project | |
run: npm run build | |
- name: Prepare deployment package | |
run: | | |
mkdir -p deployment_package | |
cp -r dist/* deployment_package | |
- name: Deploy to Home Server | |
uses: appleboy/ssh-action@v0.1.5 | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USER }} | |
password: ${{ secrets.SSH_PASSWORD }} | |
port: ${{ secrets.SSH_PORT }} | |
script: | | |
rm -rf /home/anhye0n/web/tutorial_sejong/frontend/* | |
cp -r deployment_package/* /home/anhye0n/web/tutorial_sejong/frontend/ | |
sudo systemctl restart nginx |