From 1d2e3b2d3df6640416a0f99830a1ef4bc020991f Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 13:57:42 -0600 Subject: [PATCH 01/31] Update config.toml --- config.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.toml b/config.toml index c230a5186..dca810c9f 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,4 @@ -baseURL = "https://example.com" +baseURL = "https://ignaciorodriguez98.github.io/my_launchx_blog/" languageCode = "en-us" title = "Bitácora de Viaje" theme = "hugo-winston-theme" @@ -13,7 +13,7 @@ paginate = 3 [params] google_analytics_id = "" # Hey Explorer aquí pon tu twitter 👇 - twitter_handle = "@visual_partner" + twitter_handle = "@ignacio_sibaja" showAuthorOnHomepage = true showAuthorOnPosts = false showPostsOnHomepage = false From 9e6ea46014ad3b925f2b58fa6f2a10e2ab6c8e8e Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 13:58:06 -0600 Subject: [PATCH 02/31] Update author.json --- data/author.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/author.json b/data/author.json index 60b3836a0..fc02d41c4 100644 --- a/data/author.json +++ b/data/author.json @@ -1,5 +1,5 @@ { - "name": "Aquí pon tu nombre", + "name": "Ignacio Rodriguez", "title": "Explorer", "image": "images/launchx.png" } From c369f69c08e2b1e0816390f41e68c5821e2d804e Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 13:58:30 -0600 Subject: [PATCH 03/31] Update social.json --- data/social.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/social.json b/data/social.json index 9b208c33a..84df5591e 100644 --- a/data/social.json +++ b/data/social.json @@ -2,12 +2,12 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/zerostaticio", + "url": "https://twitter.com/ignacio_sibaja", "image": "images/social/twitter.svg" }, { "name": "github", - "url": "https://github.com/zerostaticthemes", + "url": "https://github.com/IgnacioRodriguez98", "image": "images/social/github.svg" } ] From d063173828bfd927a509e8afda1d84a1624da4b7 Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 13:58:56 -0600 Subject: [PATCH 04/31] Create build_launchx_blog.yml --- github/workflows/build_launchx_blog.yml | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 github/workflows/build_launchx_blog.yml diff --git a/github/workflows/build_launchx_blog.yml b/github/workflows/build_launchx_blog.yml new file mode 100644 index 000000000..63f94bdc3 --- /dev/null +++ b/github/workflows/build_launchx_blog.yml @@ -0,0 +1,37 @@ +name: Build Personal Blog +on: push + +jobs: + build: + + name: Build and update website + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - name: Setup GoHugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.92.0' + - name: Commit Update + run: | + echo ":: Eliminando versión previa ::" + rm -rf docs + - name: Build drafts + run: hugo -D + - name: Commit Update + run: | + echo ":: Renombrando nueva version ::" + mv public/ docs/ + git config --global user.email "launchx@innovaccion.mx" + git config --global user.name "Launch X Backend Node JS" + git add . + git commit -m "GitHub Actions: Build ok" + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} From 2e2ca73d4ddfe5a409d7621c813b581d43e3dede Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 14:01:46 -0600 Subject: [PATCH 05/31] Delete github directory --- github/workflows/build_launchx_blog.yml | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 github/workflows/build_launchx_blog.yml diff --git a/github/workflows/build_launchx_blog.yml b/github/workflows/build_launchx_blog.yml deleted file mode 100644 index 63f94bdc3..000000000 --- a/github/workflows/build_launchx_blog.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Build Personal Blog -on: push - -jobs: - build: - - name: Build and update website - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - with: - submodules: true - fetch-depth: 0 - - name: Setup GoHugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.92.0' - - name: Commit Update - run: | - echo ":: Eliminando versión previa ::" - rm -rf docs - - name: Build drafts - run: hugo -D - - name: Commit Update - run: | - echo ":: Renombrando nueva version ::" - mv public/ docs/ - git config --global user.email "launchx@innovaccion.mx" - git config --global user.name "Launch X Backend Node JS" - git add . - git commit -m "GitHub Actions: Build ok" - - name: Push changes - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: ${{ github.ref }} From 956745cd050a9d80461dcedf46bbed4bca58688a Mon Sep 17 00:00:00 2001 From: Ignacio Rodriguez Sibaja <99094740+IgnacioRodriguez98@users.noreply.github.com> Date: Sat, 30 Apr 2022 14:02:39 -0600 Subject: [PATCH 06/31] Create build_launchx_blog.yml --- .github/workflows/build_launchx_blog.yml | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/build_launchx_blog.yml diff --git a/.github/workflows/build_launchx_blog.yml b/.github/workflows/build_launchx_blog.yml new file mode 100644 index 000000000..63f94bdc3 --- /dev/null +++ b/.github/workflows/build_launchx_blog.yml @@ -0,0 +1,37 @@ +name: Build Personal Blog +on: push + +jobs: + build: + + name: Build and update website + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: true + fetch-depth: 0 + - name: Setup GoHugo + uses: peaceiris/actions-hugo@v2 + with: + hugo-version: '0.92.0' + - name: Commit Update + run: | + echo ":: Eliminando versión previa ::" + rm -rf docs + - name: Build drafts + run: hugo -D + - name: Commit Update + run: | + echo ":: Renombrando nueva version ::" + mv public/ docs/ + git config --global user.email "launchx@innovaccion.mx" + git config --global user.name "Launch X Backend Node JS" + git add . + git commit -m "GitHub Actions: Build ok" + - name: Push changes + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + branch: ${{ github.ref }} From 85db42c92014f5073b4959ac292c23b8f511ce72 Mon Sep 17 00:00:00 2001 From: Launch X Backend Node JS Date: Sat, 30 Apr 2022 20:02:56 +0000 Subject: [PATCH 07/31] GitHub Actions: Build ok --- docs/.DS_Store | Bin 8196 -> 0 bytes docs/categories/index.html | 26 +++++++++++++------------- docs/categories/index.xml | 4 ++-- docs/index.html | 30 +++++++++++++++--------------- docs/index.xml | 12 ++++++------ docs/pages/about/index.html | 26 +++++++++++++------------- docs/pages/index.html | 28 ++++++++++++++-------------- docs/pages/index.xml | 8 ++++---- docs/posts/index.html | 28 ++++++++++++++-------------- docs/posts/index.xml | 8 ++++---- docs/posts/intro/index.html | 26 +++++++++++++------------- docs/sitemap.xml | 14 +++++++------- docs/tags/index.html | 26 +++++++++++++------------- docs/tags/index.xml | 4 ++-- 14 files changed, 120 insertions(+), 120 deletions(-) delete mode 100644 docs/.DS_Store diff --git a/docs/.DS_Store b/docs/.DS_Store deleted file mode 100644 index 72aa697a614830dbda48abe0c0e3458d8020d4e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHMTWl0n7(U;$(3yeC6xvdDgse0vmliB7)B-9?FGy1e$ZjtbaGl*5%7odOx-+{4 z39(9i5xgYE_$1!nlmrt^)OdR%@kwn^Uesvfi#{0iQKSEvGYfWs2YE0U<|OC*^Plto z=gj%e_n)(8mNACDlDUDg7RH!NnM-W}71v3;o#$(k6xGy{1o<;&F+Vr$Pvsmhca3#i z5hD;I5F-#H5F-#Ha4R4{XEsmr4bFYh8kaEwF#@+G0(^f+Qsy!h$r&NTt%Hj23P6%y z0m4MjbPou9l95bBaz@C|mHHI72Sl!jt{4#R)Sl$#BvX-`5mLA_2zQ2PWJEU*P9lfqW=^#G6hB zMo{wmjN$>VWjxQxRi2I9sBKMWwZ?wW4Gi10ilKvTT4Zu?%yvz0y3Z@QrXTvIMT4x! zN>*ET;zU>X#!Vf`uAbhL9mx}$yE;3P8@qc>o>b(f*1Nav%N}(Ku6J6@1JPc<>Z|5; zrg~D2U+xzlC2E>0llrDIDMekNkB+JPv)bY^z4@N0!1i2!)GGQUv)Uq`W;m4h+`UDM zw~ysLr&MtLtk#e>oP5bK0&BbDr0qv7e>|{`1^j8k_liM(XqeTsl5g#^$j&ZX17z)w z+teL5Ypi;4DCZV7EnnHz-nnVZw*H;F_RiMdu}EuBm#7m2lN;EFZL7H7@bi{y+V14Y zv~31Q#>%#D=Nv2J8U;&ffUV5dH!p2jme6%!aMht=I$p}zkCg1-xYjDm;TS9QqEC70nkl8`N%n z#4&P~qiCiWr$_D8$I1d*MH?2CTh;sY@w`_k&=h@|L5HYL(Z~<+k#`w>uxHA0uM9q* z@6adwBSz8MGff1OwF|;yi0Z=?qZaNoXxf2S`vaXXibYQ*e$oF){6BJ$hM|Bqvev>GPa%$rk(5{h0GK?#m=yo*je^Adyjp_ zK4)LBOYB?r9s7a($bMm$*&nDyJr+Sj0}@z;)mV#mY(xs%(T8E|#e+yAgG0z64-1Fk zp@cGy;W(baQ#g&M@eE$XD|i)e;7y#vNB9_@-~ztFEH2_}e2>fc4Zq`0sZNq5MOrK^ zk(#7tX^pg2>Xv$?&En0aO2kaeC7#qr`kZZmA}0EbCl#(2F^Rz)>dsptVlFKVV`TA? z#-Rc*ep@?C-yV@mHh>o2%10=Z6QV5u?{`B2ff&W zdohR|cmP90)(l24ig8R3RZSx6By1GnBOt;)h8aALQ+Sf-`YfKq^LPPg@iGzjHN1|u za31ee5pifP5%FO)5zFbK>v--Y)mO+n*Cp0&7J(Y!*uwAsgE#*Ef3w}kelY?u0{;U9 zP&<$w;J*NFw88Sbc9QbLlzHNIGeU+gRB#hsA6~~vUirh2o|92qDv~ooQVXU3{6m2F Q6&s)b@%bO}?{+Qz2En)=$^ZZW diff --git a/docs/categories/index.html b/docs/categories/index.html index 1a0f17f96..192fa6cbb 100644 --- a/docs/categories/index.html +++ b/docs/categories/index.html @@ -6,23 +6,23 @@ Categories - Bitácora de Viaje - + - + - + - - + + @@ -35,17 +35,17 @@
- +