Skip to content

Commit 74108b7

Browse files
authored
ci(deploy): ensure .well-known dir is uploaded to gh-pages (#2162)
1 parent ab6682c commit 74108b7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ jobs:
3333
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
3434
env:
3535
JEKYLL_ENV: production
36-
- name: Upload artifact
37-
# Automatically uploads an artifact from the './_site' directory by default
36+
- name: Upload gh-pages artifact
3837
uses: actions/upload-pages-artifact@v4
38+
with:
39+
path: _site
40+
include-hidden-files: true # required for /.well-known/security.txt
3941

4042
deploy:
4143
environment:
@@ -46,4 +48,4 @@ jobs:
4648
steps:
4749
- name: Deploy to GitHub Pages
4850
id: deployment
49-
uses: actions/deploy-pages@v4
51+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)