Update publications #5674
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update publications | |
| on: | |
| schedule: | |
| # * is a special character in YAML so you have to quote this string | |
| # runs once a day | |
| - cron: '*/60 */24 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| notebooks: | |
| name: "Scrape and update publications" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Set up Python | |
| uses: actions/setup-python@main | |
| with: | |
| python-version: 3.11.0 | |
| - name: Get current date | |
| id: date | |
| run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
| - name: Scrape publications | |
| env: | |
| ADS_DEV_KEY: ${{secrets.ADS_SECRET}} | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install --upgrade setuptools | |
| python3 -m pip install -e . | |
| python3 src/cv/scripts/scrape_ads.py | |
| - name: Format publications | |
| run: | | |
| python3 src/cv/scripts/format_pubs.py | |
| - run: git pull | |
| - name: Committing changes | |
| uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: Scrape and update publications | |
| - name: Make new release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| artifacts: "release.tar.gz,*.pdf" | |
| tag: ${{ steps.date.outputs.date }} | |
| token: ${{ secrets.GITHUB_TOKEN }} |