Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/build-ls-struct.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Create ZIP archive
uses: actions/upload-artifact@v5
with:
name: FMI-LS-Struct
name: FMI-LS-STRUCT
path: |
docs/index.html
docs/LICENSE.txt
Expand All @@ -55,9 +55,8 @@ jobs:
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
- name: deploy
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: peaceiris/actions-gh-pages@v3.9.3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
publish_dir: docs
Copy link

Copilot AI Jan 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The publish_dir has been changed from 'build' to 'docs', but lines 44-45 show the artifact includes 'docs/index.html' and 'docs/LICENSE.txt'. If the build process outputs to 'docs/', ensure this aligns with the actual build output location. If the build creates files in 'docs/' as artifacts but the deployment expects 'build/', this could result in deployment failures.

Copilot uses AI. Check for mistakes.
destination_dir: ${{ steps.extract_branch.outputs.branch }}
enable_jekyll: true