pipeline_creation #14

Merged
armistace merged 4 commits from pipeline_creation into master 2025-06-05 08:43:24 +10:00
2 changed files with 4 additions and 1 deletions

View File

@ -21,6 +21,9 @@ jobs:
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
git config --global user.name "Blog Creator"
git config --global user.email "ridgway.infrastructure@gmail.com"
git config --global push.autoSetupRemote true
- name: Create .env
shell: bash

View File

@ -30,7 +30,7 @@ for note in tril_notes:
ai_gen = omg.OllamaGenerator(os_friendly_title,
tril_notes[note]['content'],
tril_notes[note]['title'])
blog_path = f"/blog_creator/generated_files/{os_friendly_title}.md"
blog_path = f"generated_files/{os_friendly_title}.md"
ai_gen.save_to_file(blog_path)