Merge pull request #3199 from eseiler/test/api #102
Workflow file for this run
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: Cookbook | |
on: | |
push: | |
branches: | |
- 'master' | |
env: | |
TZ: Europe/Berlin | |
defaults: | |
run: | |
shell: bash -Eexuo pipefail {0} | |
jobs: | |
update-cookbook: | |
name: Update Cookbook | |
concurrency: | |
group: update-cookbook-${{ github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout SeqAn3 | |
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: Update cookbook | |
run: ./test/scripts/add_snippets_to_cookbook.sh . | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: ./doc/cookbook/index.md | |
author_name: seqan-actions[bot] | |
author_email: [email protected] | |
message: '[MISC] Update cookbook' |