Skip to content

Commit

Permalink
Merge branch 'develop' into issue205
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliyobo authored Dec 1, 2024
2 parents 4eccb50 + 308bf27 commit 3bcfac6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
# Step 2: Download update_info.json from the release assets
- name: Download update_info.json from release
env:
PAT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
run: |
$ReleaseAssetsUrl = "${{ github.event.release.assets_url }}"
Write-Host "Fetching release assets from: $ReleaseAssetsUrl"
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}
commit-message: 'Update update_info.json after release'
branch: update-info/${{ github.run_id }}
title: 'Update update_info.json after release'
Expand Down
6 changes: 3 additions & 3 deletions bookworm/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
description = "The Universally accessible document reader"
author = "Blind Pandas"
author_email = "info@blindpandas.com"
version = "2024.1"
version_ex = "2024.1.0.11"
version = "2024.2"
version_ex = "2024.2.0.12"
url = "https://github.com/blindpandas/bookworm"
website = "https://github.com/blindpandas/bookworm"
update_url = "https://github.com/blindpandas/bookworm/blob/main/update_info.json"
update_url = "https://raw.githubusercontent.com/blindpandas/bookworm/main/update_info.json"
copyright = f"Copyright (c) 2024 {author} and {display_name} contributors."
exit_code = 0
is_frozen = getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS")
Expand Down

0 comments on commit 3bcfac6

Please sign in to comment.