Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/finsberg/add-publications
https://github.com/finsberg/add-publications
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/finsberg/add-publications
- Owner: finsberg
- Created: 2024-08-02T19:57:43.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-19T11:31:37.000Z (3 months ago)
- Last Synced: 2024-08-19T13:31:23.789Z (3 months ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Add publications
This repository contains an action for creating new bib items for your academic page. This is e.g used in https://github.com/finsberg/finsberg.github.io
Example usage
```yml
name: Scholar Boton:
schedule:
- cron: "0 8 * * 1" # Run every Monday at 08:00jobs:
scholar:
permissions:
contents: write
pull-requests: writeruns-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Create _publications directory
run: mkdir -p _publications
- id: pygscholar
uses: finsberg/add-publications@main
with:
name: "Henrik Finsberg"
scholar_id: "NDPIHoEAAAAJ"
cache_dir: ".pygscholar"
working-directory: "."
token: ${{ secrets.GITHUB_TOKEN }}
bibdir: "_publications"
```