File tree 6 files changed +33
-14
lines changed
6 files changed +33
-14
lines changed Original file line number Diff line number Diff line change
1
+ name : collect-posts
2
+ on : # FIXME add cron
3
+ - push
4
+ jobs :
5
+ download-posts :
6
+ name : " Check for new posts, download them and re-publish"
7
+ runs-on : " ubuntu-latest"
8
+ steps :
9
+ - name : Checkout
10
+ uses : actions/checkout@v3
11
+ with :
12
+ ref : ' run'
13
+ - name : Setup Python
14
+ uses : actions/setup-python@v4
15
+ with :
16
+ python-version : ' 3.6'
17
+ cache : pip
18
+ - run : pip install -r requirements.txt
19
+ - name : grab posts
20
+ run : python grab.py
21
+ - name : Build and Deploy Nikola
22
+ uses : getnikola/nikola-action@v4
23
+ with :
24
+ dry_run : false
Original file line number Diff line number Diff line change 1
1
cache
2
2
.doit.db *
3
3
__pycache__
4
+ output
Original file line number Diff line number Diff line change 548
548
# https://getnikola.com/handbook.html#deploying-to-github
549
549
# For user.github.io OR organization.github.io pages, the DEPLOY branch
550
550
# MUST be 'master', and 'gh-pages' for other repositories.
551
- # GITHUB_SOURCE_BRANCH = 'master '
552
- # GITHUB_DEPLOY_BRANCH = 'gh-pages'
551
+ GITHUB_SOURCE_BRANCH = 'run '
552
+ GITHUB_DEPLOY_BRANCH = 'gh-pages'
553
553
554
554
# The name of the remote where you wish to push to, using github_deploy.
555
555
# GITHUB_REMOTE_NAME = 'origin'
Original file line number Diff line number Diff line change
1
+ jupyter
2
+ nikola
3
+ markdown
4
+ pyyaml
5
+ feedparser
6
+ pytz
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments