godotengine / godot-website

The code for the official Godot Engine website. A static site built using Jekyll.
https://godotengine.org
MIT License
280 stars 138 forks source link

Fix relative path issue with `minify` #864

Closed adamscott closed 1 month ago

adamscott commented 1 month ago

The minify generation had the following error on the github action:

Minifying assets
ERROR: stat .//home/runner/work/godot-website/godot-website/_site: no such file or directory
                    done in 8.002 seconds.

This now uses ruby pathname library to get a relative path.

Follow-up of #863 Fixes #860

winston-yallow commented 1 month ago

Thanks!