Update Publications #79
This file contains 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: | |
# Every Friday | |
schedule: | |
- cron: '0 6 * * FRI' | |
# Enables a manual trigger, may run on any branch | |
workflow_dispatch: | |
env: | |
TZ: Europe/Berlin | |
defaults: | |
run: | |
shell: bash -lEexo pipefail {0} | |
jobs: | |
update_publications: | |
name: Update Publications | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 30 | |
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.SEQAN_ACTIONS_PAT }} | |
- name: Import GPG key | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.SEQAN_ACTIONS_GPG_KEY }} | |
passphrase: ${{ secrets.SEQAN_ACTIONS_GPG_PASSPHRASE }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Get cached python environment | |
uses: actions/cache@v4 | |
with: | |
path: ~/conda_pkgs_dir | |
key: ${{ runner.os }}-conda-${{ hashFiles('.github/workflows/misc/environment.yml') }} | |
- name: Setup python environment | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
activate-environment: update_publication | |
environment-file: .github/workflows/misc/environment.yml | |
use-only-tar-bz2: true | |
- name: Update publications | |
run: python update_publications.py | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: seqan-actions[bot] | |
author_email: [email protected] | |
message: '[CRON] Update publications' |