Update to latest Calibre Release #340
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 to latest Calibre Release | |
on: | |
schedule: | |
- cron: '30 5 * * *' | |
workflow_dispatch: | |
jobs: | |
update-tags: | |
name: Check Calibre releases and update tags | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Update Tag | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
./update.sh |