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
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
branches: ["master"]
paths:
- "src/**"
Comment on lines 6 to 7

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Keep Docker build inputs in the path filter

When a commit to master changes only Dockerfile, pyproject.toml, or .dockerignore, this filter now skips the entire release workflow, leaving the published latest image stale. These are direct Docker build inputs—Dockerfile copies pyproject.toml and installs the package—so changes to the base image, runtime configuration, dependencies, packaging metadata, or build context will not reach GHCR until an unrelated src/** change or tag push occurs. Keep these paths in the trigger, or separate image publication from any workflow work that should be limited to source changes.

Useful? React with 👍 / 👎.

- "Dockerfile"
- "pyproject.toml"
- ".dockerignore"
tags: ["v*.*.*"]
workflow_dispatch:

Expand Down
Loading