Skip to content

Commit

Permalink
tag latest on release
Browse files Browse the repository at this point in the history
  • Loading branch information
vanchaxy committed Nov 28, 2024
1 parent 5965c05 commit 62b0e3f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
images: ghcr.io/${{ github.repository }}
tags: |
type=semver,pattern={{version}},value=${{ inputs.version }}
latest=${{ github.event.release.prerelease == 'false' && 'latest' || '' }}
- name: Build and push Docker image
uses: docker/build-push-action@v5.3.0
Expand Down
2 changes: 1 addition & 1 deletion fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ app = 'plexio'
primary_region = 'iad'

[build]
image = 'ghcr.io/vanchaxy/plexio:0.1.0-rc6'
image = 'ghcr.io/vanchaxy/plexio:0.1.0-rc7'

[env]
CACHE_TYPE = 'redis'
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontend",
"private": true,
"version": "0.1.0-rc6",
"version": "0.1.0-rc7",
"type": "module",
"scripts": {
"dev": "vite --host",
Expand Down
2 changes: 1 addition & 1 deletion plexio/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0-rc6'
__version__ = '0.1.0-rc7'
2 changes: 1 addition & 1 deletion plexio/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Settings(BaseSettings):
plex_requests_timeout: int = 20
cache_type: CacheType = CacheType.memory
redis_url: str = 'redis://redis:6399/0'
plex_matching_token: str = None
plex_matching_token: str | None = None


settings = Settings()

0 comments on commit 62b0e3f

Please sign in to comment.