ci(deploy): ensure .well-known dir is uploaded to gh-pages (#2162)

This commit is contained in:
Jon Church
2026-01-20 15:39:00 -05:00
committed by GitHub
parent ab6682cd1e
commit 74108b7375

View File

@@ -33,9 +33,11 @@ jobs:
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production
- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
- name: Upload gh-pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: _site
include-hidden-files: true # required for /.well-known/security.txt
deploy:
environment:
@@ -46,4 +48,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v4