This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
Update README.md #11
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" ] | |
workflow_dispatch: | |
env: | |
AZURE_WEBAPP_NAME: nanuri | |
AZURE_WEBAPP_PACKAGE_PATH: 'frontend/dist' # 빌드된 파일의 경로로 수정 | |
NODE_VERSION: '20.x' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
cache-dependency-path: frontend/package-lock.json # 이 줄을 추가 | |
- name: npm install, build, and test | |
run: | | |
cd frontend | |
npm ci # npm install 대신 npm ci 사용 | |
npm run build --if-present | |
npm run test --if-present | |
- name: Upload artifact for deployment job | |
uses: actions/upload-artifact@v3 | |
with: | |
name: node-app | |
path: frontend/dist # 빌드된 파일만 업로드 | |
deploy: | |
permissions: | |
contents: none | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: 'Development' | |
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | |
steps: | |
- name: Download artifact from build job | |
uses: actions/download-artifact@v3 | |
with: | |
name: node-app | |
path: frontend/dist # 다운로드 경로 지정 | |
- name: 'Deploy to Azure WebApp' | |
id: deploy-to-webapp | |
uses: azure/webapps-deploy@v2 | |
with: | |
app-name: ${{ env.AZURE_WEBAPP_NAME }} | |
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE }} | |
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} | |