-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (38 loc) · 1.26 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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