Skip to content

Commit d669018

Browse files
committed
Nikola on GHA (removed Travis)
1 parent e28b0df commit d669018

File tree

6 files changed

+33
-14
lines changed

6 files changed

+33
-14
lines changed

.github/workflows/collect_posts.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
cache
22
.doit.db*
33
__pycache__
4+
output

conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -548,8 +548,8 @@
548548
# https://getnikola.com/handbook.html#deploying-to-github
549549
# For user.github.io OR organization.github.io pages, the DEPLOY branch
550550
# 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'
553553

554554
# The name of the remote where you wish to push to, using github_deploy.
555555
# GITHUB_REMOTE_NAME = 'origin'

requirements.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
jupyter
2+
nikola
3+
markdown
4+
pyyaml
5+
feedparser
6+
pytz

travis/deploy.sh

-12
This file was deleted.

travis/travis_key.enc

-3.17 KB
Binary file not shown.

0 commit comments

Comments
 (0)