From 615f10f72da1db32df66997b5b7666707a7e2226 Mon Sep 17 00:00:00 2001 From: Sergey Dedov Date: Wed, 20 Dec 2023 13:59:55 +0300 Subject: [PATCH] =?UTF-8?q?rebuilding=20site=20=D1=81=D1=80=D0=B5=D0=B4?= =?UTF-8?q?=D0=B0,=2020=20=D0=B4=D0=B5=D0=BA=D0=B0=D0=B1=D1=80=D1=8F=20202?= =?UTF-8?q?3=20=D0=B3.=2013:59:55=20(MSK)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- content/{+_index.en.md => _index.en.md} | 0 content/{+_index.ru.md => _index.ru.md} | 0 content/posts/.DS_Store | Bin 6148 -> 6148 bytes content/posts/articles/article-APR.md | 134 +++++++++ content/posts/articles/article-BLD.md | 239 ++++++++++++++++ content/posts/articles/article-LCFMS.md | 345 ++++++++++++++++++++++++ content/posts/hugo_github/h2git.md | 4 +- publish.sh | 18 +- 8 files changed, 737 insertions(+), 3 deletions(-) rename content/{+_index.en.md => _index.en.md} (100%) rename content/{+_index.ru.md => _index.ru.md} (100%) create mode 100644 content/posts/articles/article-APR.md create mode 100644 content/posts/articles/article-BLD.md create mode 100644 content/posts/articles/article-LCFMS.md diff --git a/content/+_index.en.md b/content/_index.en.md similarity index 100% rename from content/+_index.en.md rename to content/_index.en.md diff --git a/content/+_index.ru.md b/content/_index.ru.md similarity index 100% rename from content/+_index.ru.md rename to content/_index.ru.md diff --git a/content/posts/.DS_Store b/content/posts/.DS_Store index 1a4fd049998b38f32d65871b3ab5b678b87cc864..57ac2977ec28ea82cd53f32059780e359711cac5 100644 GIT binary patch delta 198 zcmZoMXfc@JFUrHfz`)4BAi%(o%#g#7%21q>ZWz2-k$E{|JxGd!A(5eop@bn5SvomC zw*V*y0~l&@^Icq$a`Kaa3OEdI25pO)dDIcaMmH-rKLw9EDTJj38HT~gmTu-@N@m^6 I&heKY0D9OgY5)KL delta 52 zcmZoMXfc@JFUrBdz`)4BAi%&7&ydcL$xy - Инструкция на сайте [HUGO](https://gohugo.io/getting-started/quick-start/) diff --git a/publish.sh b/publish.sh index 605083f..b3d2f22 100755 --- a/publish.sh +++ b/publish.sh @@ -1 +1,17 @@ -git add . && git commit -m "dd" && git push +#!/bin/sh + +set -e + +printf "\033[0;32mДеплой на Github!..\033[0m\n" + +msg="rebuilding site $(date)" +if [ -n "$*" ]; then + msg="$*" +fi + +echo "" +echo "" +echo "Коммитим изменения в $(pwd)" +git add . +git commit -m "$msg" +git push origin \ No newline at end of file