hotfix: 중복 코드 확인 및 jwt 토큰 내 SameSite 설정 누락 수정 #7
This file contains hidden or 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: Azure Static Web CI/CD (BACK) | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - 'Back/**' | |
| env: | |
| AZURE_WEBAPP_NAME: 'woorung-back' | |
| NODE_VERSION: '22.x' | |
| PACKAGE_PATH: 'Back' | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| name: 🪛 Backend 빌드 및 배포 작업 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: ☕ 배포 | |
| uses: azure/webapps-deploy@v2 | |
| with: | |
| app-name: ${{ env.AZURE_WEBAPP_NAME }} | |
| publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }} | |
| package: ${{ env.PACKAGE_PATH }} |