базовая структура фронта #9
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: Deploy Frontend | |
| on: | |
| push: | |
| branches: [front] | |
| jobs: | |
| deploy-frontend: | |
| runs-on: self-hosted | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: front | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build React | |
| run: npm run build | |
| - name: Copy build to nginx root | |
| run: cp -r dist/* /var/www/myapp/frontend/ |