The GitHub actions were running everytime a new commit was made to the repo, but that wasn't needed. For example, we don't need to try to create a new docker image if the libraries didn't change, same to build the whole site after a change in the README.md. --------- Signed-off-by: George Araújo <george.gcac@gmail.com>
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
module.exports = {
|
|
content: ["_site/**.html", "_site/**.js"],
|
|
css: ["_site/assets/css/*.css"],
|
|
output: "_site/assets/css/",
|
|
skippedContentGlobs: ["_site/assets/**.html"],
|
|
};
|