Добавлен стиль для цитат #118
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'] | |
name: 🚀 Deploy website on push | |
permissions: | |
contents: write | |
jobs: | |
build-frontend: | |
name: Build frontend | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get latest code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Commit build | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git diff --quiet || (git add public && git commit -m "Build assets for production") | |
git push | |
web-deploy: | |
needs: build-frontend | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get latest code | |
uses: actions/checkout@v4 | |
- name: Sync files | |
uses: SamKirkland/[email protected] | |
with: | |
server: vh428.timeweb.ru | |
username: cp17145 | |
password: ${{ secrets.ftp_password }} | |
server-dir: /info-lab/ | |
timeout: 100000 | |
rerun-failed-web-deploy-1: | |
name: Rerun Deploy | |
runs-on: ubuntu-latest | |
needs: [build-frontend,web-deploy] | |
if: failure() | |
steps: | |
- name: Get latest code | |
uses: actions/checkout@v4 | |
- name: Sync files | |
uses: SamKirkland/[email protected] | |
with: | |
server: vh428.timeweb.ru | |
username: cp17145 | |
password: ${{ secrets.ftp_password }} | |
server-dir: /info-lab/ | |
timeout: 100000 |