Generate Blog Content #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Blog Content | |
on: | |
workflow_dispatch: | |
# Add permissions for the GITHUB_TOKEN | |
permissions: | |
contents: write | |
jobs: | |
generate-content: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout blog repository | |
uses: actions/checkout@v3 | |
with: | |
path: blog | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Checkout hugo_generator repository | |
uses: actions/checkout@v3 | |
with: | |
repository: dodwmd/hugo_generator | |
path: hugo_generator | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
uses: py-actions/py-dependency-install@v4 | |
with: | |
path: "hugo_generator/requirements.txt" | |
- name: Run content generator | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
UNSPLASH_ACCESS_KEY: ${{ secrets.UNSPLASH_ACCESS_KEY }} | |
HUGO_CONTENT_DIR: ${{ github.workspace }}/blog/content/posts | |
LOG_LEVEL: INFO | |
run: | | |
cd hugo_generator | |
python main.py | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
repository: blog | |
commit_message: "Auto-generate blog content using hugo_generator" | |
file_pattern: '.' |