Merge pull request #18 from redrockjs/dev

Dev
This commit was merged in pull request #18.
This commit is contained in:
Valeriy G.
2025-06-19 16:37:17 +03:00
committed by GitHub
3 changed files with 42 additions and 0 deletions

View File

@@ -51,3 +51,30 @@ jobs:
- name: Start containers
run: |
docker compose -f docker-compose.yaml up -d
- name: Notify Telegram about success
if: success()
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_CHAT_ID }}
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
message: |
✅ Деплой успешно завершен!
Репозиторий: ${{ github.repository }}
Ветка: ${{ github.ref }}
Коммит: ${{ github.sha }}
Сервер: ${{ secrets.SERVER_IP }}
Путь: ${{ secrets.DEPLOY_PATH }}
- name: Notify Telegram about failure
if: failure()
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_CHAT_ID }}
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
message: |
❌ Деплой не удался!
Репозиторий: ${{ github.repository }}
Ветка: ${{ github.ref }}
Коммит: ${{ github.sha }}
Подробности: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

6
public/robots.txt Normal file
View File

@@ -0,0 +1,6 @@
User-agent: *
Disallow: /api/
Disallow: /cookie/
Disallow: /privacy-policy/
Disallow: /user-agreement/
Sitemap: https://fire-experts.ru/sitemap.xml

9
public/sitemap.xml Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://fire-experts.ru/</loc>
<lastmod>2024-06-19</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
</urlset>