fix: PrevRecoil 구조분해할당 #97
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 Frontend To Nginx Test | |
on: | |
push: | |
branches: ["FE/main"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.5.1 | |
- name: Check Node v | |
run: node -v | |
- name: Install dependencies | |
working-directory: ./front | |
run: npm install | |
- name: .env init | |
working-directory: ./front | |
run: echo VITE_APP_SENTRY_DSN = ${{ secrets.SENTRY_DSN }} >> .env | |
- name: Generate build | |
working-directory: ./front | |
run: npm run build | |
- name: List contents of ./front/dist | |
run: ls -la ./front/dist | |
- name: Remove build folder in the server | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SERVER_HOST }} | |
username: ${{ secrets.SERVER_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
rm -rf /usr/share/nginx/build | |
- name: Deploy to Server | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SERVER_HOST }} | |
username: ${{ secrets.SERVER_USERNAME }} | |
# key: ${{ secrets.SSH_PRIVATE_KEY }} | |
password: ${{ secrets.SERVER_PASSWORD }} | |
source: front/dist | |
target: /usr/share/nginx/build |