article-generator #143
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: article-generator | |
on: | |
schedule: | |
- cron: '0 */3 * * *' | |
push: | |
branches: | |
- main | |
jobs: | |
run-script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' # Reemplaza con la versión de Python que necesites | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install feedparser requests python-dotenv beautifulsoup4 google-generativeai translate | |
- name: Run main.py | |
env: | |
WORDPRESS_URL: ${{ secrets.WORDPRESS_URL }} | |
WORDPRESS_TOKEN: ${{ secrets.WORDPRESS_TOKEN }} | |
WORDPRESS_USERNAME: ${{ secrets.WORDPRESS_USERNAME }} | |
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} | |
RSS_URL: ${{ secrets.RSS_URL }} | |
run: python main.py | |
- name: Commit and push changes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | |
git add feed_data.json | |
git diff-index --quiet HEAD || git commit -m 'Add generated feed_data.json' | |
git push |