Skip to content

Commit b9796a3

Browse files
committed
fix(GitHub): Fixed problem causing release docker images to be skipped
1 parent 307e577 commit b9796a3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/test-and-docker.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,14 @@ jobs:
3838
name: Docker build and publish
3939
# Need checks and tests to be passing.
4040
needs: Check-and-Test
41-
# Completely avoid forks and pull requests to try any docker job. Only upstream repo, main branch and push.
41+
# Completely avoid forks and pull requests to try any docker job. Only upstream repo push, main branch or tags.
4242
if: |
4343
github.repository_owner == 'moodlehq' &&
44-
github.ref == 'refs/heads/main' &&
45-
contains(fromJson('["push"]'), github.event_name)
44+
contains(fromJson('["push"]'), github.event_name) &&
45+
(
46+
github.ref == 'refs/heads/main' ||
47+
startsWith(github.ref, 'refs/tags/v')
48+
)
4649
runs-on: ubuntu-latest
4750
steps:
4851
- name: Checkout

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ and commits should be formatted using [Conventional Commits](https://www.convent
1010

1111
### Fixed
1212

13-
- Langfuse: Ensure that all objects passed are JSON-serializable
13+
- Langfuse: Ensure that all objects passed are JSON-serializable by @stronk7 ([307e577](https://github.com/moodlehq/wiki-rag/commit/307e57768394ff4c0a39aee252d72fd31da9847c))
14+
- GitHub: Fixed problem causing release docker images to be skipped
1415
## [0.11.0] - 2025-09-19
1516

1617
### Added

0 commit comments

Comments
 (0)