FE-프론트엔드 운영 배포 #23
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: Frontend Production Deploy (CD) | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Frontend Deploy | |
runs-on: shook-prod | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v3 | |
- name: Setting env | |
shell: bash | |
run: | | |
rm -rf frontend/.env | |
mkdir frontend/.env | |
echo "BASE_URL=${{ secrets.FRONT_PROD_BASE_URL }}" > frontend/.env/.env.production | |
- name: Cache dependencies | |
id: cache-npm | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-${{ env.cache-name }}- | |
${{ runner.os }}-node- | |
${{ runner.os }}- | |
- name: Install Dependencies | |
shell: bash | |
if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }} | |
run: npm ci | |
working-directory: ./frontend | |
- name: Build files | |
shell: bash | |
run: npm run build | |
working-directory: ./frontend | |
- name: Remove legacy static pages | |
shell: bash | |
run: rm -rf home/ubuntu/dist | |
- name: Move generated new static pages | |
shell: bash | |
run: cp -r frontend/dist ~/ |