我的周刊自 21-08-16 日启动,自此已经写了快一年了,不出意外也会持续更新下去 🥳。
和大家通知一件事,我的周刊上线了今日推荐功能,我将历史的周刊数据都拆分出来形成老胡的周刊数据库,并全部开源在weekly.db[1],大家可以免费使用(注明来源即可)。
目前差不多有四百多条数据,字段含义如下:
- weekly_year:年份
- weekly_number:周刊号
- item_type:项目类别
- item_content:项目描述
有了这些数据,就可以实现今日推荐的功能了,生成效果如下:
为了可以每日自动生成,再结合github
的workflow
即可,我设置每日凌晨就运行今日推荐生成脚本。
name: Update on: push: workflow_dispatch: schedule: - cron: "0 18 * * *" jobs: update: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.7 uses: actions/setup-python@v2 with: python-version: "3.7.11" architecture: "x64" cache: "pip" - name: Install dependencies run: | pip install pip -U pip install -r requirements.txt - name: Generate random weekly run: python random_weekly.py - name: Commit files run: | git config user.name github-actions git config user.email github-actions@github.com git add . git commit -am "Update random weekly `date`" git pull --rebase git push git pull --rebase mkdocs gh-deploy --clean