Skip to content

minor fix for windows#15

Merged
SilvioGiancola merged 1 commit into
mainfrom
dev-silvio
Apr 12, 2026
Merged

minor fix for windows#15
SilvioGiancola merged 1 commit into
mainfrom
dev-silvio

Conversation

@SilvioGiancola
Copy link
Copy Markdown
Collaborator

No description provided.

Copilot AI review requested due to automatic review settings April 12, 2026 11:27
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR aims to fix the Windows PyInstaller --add-data syntax in GitHub Actions workflows so required YAML config files are bundled correctly in the standalone build.

Changes:

  • Update Windows PyInstaller --add-data separator from : to ; in CI workflow.
  • Update the corresponding line in the release workflow (but it currently introduces a filename typo).

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
.github/workflows/release.yml Adjusts Windows PyInstaller data bundling for release builds (currently broken due to a typo in the config filename).
.github/workflows/ci.yml Fixes Windows PyInstaller --add-data syntax to correctly include loc_config.yaml during CI builds.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

--add-data "image;image"
--add-data "config.yaml;."
--add-data "loc_config.yaml:."
--add-data "loc_config.;."
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

The Windows PyInstaller --add-data entry appears to be corrupted: loc_config.;. drops the .yaml filename and will cause the build to miss loc_config.yaml (and may even be treated as a directory). This should match the Windows syntax used in ci.yml: --add-data "loc_config.yaml;.".

Suggested change
--add-data "loc_config.;."
--add-data "loc_config.yaml;."

Copilot uses AI. Check for mistakes.
@SilvioGiancola SilvioGiancola merged commit d778e4c into main Apr 12, 2026
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants