From 4f70df235ab9fddb3b41d7306f699a7efaa71fbf Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Thu, 28 Aug 2025 13:22:00 -0700 Subject: [PATCH] content: Fix typo --- content/en/host-and-deploy/host-on-codeberg-pages.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/en/host-and-deploy/host-on-codeberg-pages.md b/content/en/host-and-deploy/host-on-codeberg-pages.md index d128ec31e..b322466e4 100644 --- a/content/en/host-and-deploy/host-on-codeberg-pages.md +++ b/content/en/host-and-deploy/host-on-codeberg-pages.md @@ -261,8 +261,6 @@ Codeberg Pages relies on a `.domains` file to identify allowed domains for a spe When looking at the example `.forgejo/workflows/hugo.yaml`, you'll notice that the `upload-artifact@v3` action is used to upload the public directory to the deployment branch. -By default, both `upload-artifact@v3` and `upload-artifact@v4` exclude all dot files from being uploaded unless you specifically tell them not to (you can find more details [here]). - By default, upload-artifact@v3 and upload-artifact@v4 exclude all dot files from being uploaded. You can find more details on [how to handle dot files and other file patterns in the documentation](https://github.com/actions/upload-artifact/issues/602). To make sure dot files are included, modify your workflow like this: ```yaml {file=".forgejo/workflows/hugo.yaml" copy=true}