Jekyll Blog not updating / showing new posts - jekyll

After I read through all the questions I found here, I still don't get my blog Atmochrom.com running
You can find my repository right here: https://github.com/MarcLeyendecker/marcleyendecker.github.io
I did not change anything. Actually I always duplicate my latest post, edit the .markdown file and push it to the repository. Working for over a year now this way, now it just fails to show the updated site.
Any ideas what I could do?
I already...
checked the config
checked the CNAME
checked the index
Really hope you can help me!

Marc, just double check ...
your post markdown is clean
there are no untracked files when you push to git
This post can help What are some common reasons for a Jekyll post to not be generated?
This tip helped future: true

Related

GitHub action status badge showing No Status

I'm attempting to add a badge to my GitHub repo showing the status of unit tests. I followed the guide, shown here, and produced the following change to my repo:
[![Unit Tests Status](https://github.com/xefino/goutils/workflows/Unit%20Tests/badge.svg)](https://github.com/xefino/goutils/actions)
However, when I navigate to the repo's page on GitHub, I see that the action shows "No Status". I understand, from this question, that the name described in the workflow's YAML file has to match the URL, which mine does. So I'm having trouble understanding why I'm not seeing a status on the badge. Does anyone have any information on this?
I discovered the issue here. My URL was not actually correct, not because of some typo, but because the format had changed. So, doing this worked:
[![Unit Tests Status](https://github.com/xefino/goutils/actions/workflows/test.yml/badge.svg)](https://github.com/xefino/goutils/actions)

Why are my posts not getting published after using git push?

A complete dummy here...
So, we have a website hosted on Github, and we used Jekyll. Now, everything was working just fine, however, a couple of days ago after pushing new posts we get nothing on the website...
Usually, we do it as following:
git add .
git commit -m "initial commit"
git push
And everything works fine.
After running git status, this is what we get:
On branch master
Your branch is up to date with 'origin/master'
nothing to commit, working tree clean
We got the same message before, so the only change is basically that the posts are not showing up on the website :(
Please help!
Thank you!
Recently faced a similar issue. New posts were no more shown on my GitHub web site. I create posts locally and push them to GitHub using Visual Studio Code. Fixed my issue by making "encoding: UTF-8" uppercase in "_config.yml" file (was "encoding: utf-8" before). Once this change was pushed, new posts were shown correctly.
Update: recently noticed as well that timestamp of posts may be the reason for them to not show up. Will need to check which timezone is applied to GitHub web site and compare it with my own.

Jekyll custom placeholders

I am trying to set up a jekyll site that sources its pages from github repository. I can "bring" that repository using the git submodule command so that works just fine.
The URL I want to have is:
https://example.ld/:version/:language/:page-name
For the :page-name I can use the :title global placeholder.
My folder structure is:
posts
posts/1.0
posts/1.0/en
posts/1.0/en/about.md
....
posts/1.0/fr
posts/1.0/fr/about.md
....
I tried playing around with the permalink option in the configuration but cannot find the right combination to do what I need since :language of course does not exist as a placeholder or does :version.
Is there a way to define those so that my users can visit the site and view https://example.ld/1.0/en/about?
Should I move the docs folder under the _posts folder?
Any pointers are more than appreciated. Thank you.

Faulty wordpress post link (leads to wrong direction)

I've got a post on my site running WP 4.7.2 with permalink http://www.pimpf.ru/discography/depeche-mode/video/101/ and dirty link http://www.pimpf.ru/?p=1780.
Any of the above links lead to http://www.pimpf.ru/discography/depeche-mode/video/video-singles-collection/101/.
It seems WP adds video-singles-collection/ between video/ and 101 due to some MySQL error.
Where should I dig my WP database to correct this error?
So far I've tried to delete the 101 post and create the new one, and rename its permalink to 101-video. Both with no result.
It could be because your faulty post's permanent link contains only digits. Try to rename it to something like one-zero-one or 1o1. That should help.

Jenkins can't generate HTML reports with htmlpublisher

I'm having a heck of a time trying to publish any HTML report with htmlpublisher.
My input looks like this:
And the 404 looks like this:
The report is definitely generated in build/. I've visually compared my config.xml file to a known working example and it's apparently the same. The entry in jobs/ is there, with the correct name and documentation.
I can't figure out what I'm doing wrong. I've checked the "keep past HTML reports" box, unchecked it, played with the paths, read the (poor) documentation but I can't seem to get it working. Can anyone help?
What version of Jenkins are you running? I'm seeing this issue on all of my projects since updating to 1.529. The files are being copied to jobs/ correctly as you mentioned.
The answer you accepted is incorrect and contradicts the documentation at https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin
EDIT: The issue has been resolved in 1.530: https://jenkins-ci.org/changelog
I've updated and I'm not seeing 404s anymore.
The developers of Jenkins has confirmed that this issue is related to the version 1.529 and it is solved in 1.530.