Skip to content

Commit

Permalink
Add alpha automation
Browse files Browse the repository at this point in the history
Minor dependency and code cleanup
  • Loading branch information
NeonDaniel committed Dec 12, 2023
1 parent a37250d commit 78d6e3b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .dockerignore

This file was deleted.

16 changes: 16 additions & 0 deletions .github/workflows/publish_test_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Publish Alpha Build
on:
push:
branches:
- dev
paths-ignore:
- 'version.py'

jobs:
publish_alpha_release:
uses: neongeckocom/.github/.github/workflows/publish_alpha_release.yml@master
secrets: inherit
with:
version_file: "version.py"
setup_py: "setup.py"
publish_prerelease: true
2 changes: 1 addition & 1 deletion neon_llm_core/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,4 @@ def convert_role(cls, role: str) -> str:
matching_llm_role = cls.mq_to_llm_role.get(role)
if not matching_llm_role:
raise ValueError(f"role={role} is undefined, supported are: {list(cls.mq_to_llm_role)}")
return matching_llm_role
return matching_llm_role
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# networking
neon-mq-connector>=0.7.1a4
neon-mq-connector~=0.7,>=0.7.1
ovos-utils~=0.0.32
ovos-config~=0.0.10

0 comments on commit 78d6e3b

Please sign in to comment.