diff --git a/.github/workflows/update-major-tag.yml b/.github/workflows/update-major-tag.yml new file mode 100644 index 0000000..7b5ae6a --- /dev/null +++ b/.github/workflows/update-major-tag.yml @@ -0,0 +1,33 @@ +name: update major tag + +on: + push: + branches: + - main + workflow_dispatch: + +permissions: + contents: write + +env: + MAJOR_TAG: v1 + +jobs: + move-tag: + name: move major tag + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Configure git + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + + - name: Update moving tag + run: | + git fetch --tags --force + git tag -fa "$MAJOR_TAG" -m "Update $MAJOR_TAG to $GITHUB_SHA" "$GITHUB_SHA" + git push origin "refs/tags/$MAJOR_TAG" --force diff --git a/README.md b/README.md index 19fadd0..789faf7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # buzz -`buzz` is a small Real-Debrid WebDAV service for Jellyfin and Plex. +`buzz` is a small Debrid WebDAV service for [Jellyfin](https://jellyfin.org/) and [Plex](https://watch.plex.tv). +![screenshot](/docs/assets/screenshot.png) ## Layout diff --git a/docs/assets/screenshot.png b/docs/assets/screenshot.png new file mode 100644 index 0000000..a299b12 Binary files /dev/null and b/docs/assets/screenshot.png differ diff --git a/pyproject.toml b/pyproject.toml index e8864d5..dd70a3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "buzz" -version = "0.1.0" +version = "1.0.0" description = "Add your description here" readme = "README.md" requires-python = ">=3.14" diff --git a/uv.lock b/uv.lock index 7dcdbcf..b6652b7 100644 --- a/uv.lock +++ b/uv.lock @@ -34,7 +34,7 @@ wheels = [ [[package]] name = "buzz" -version = "0.1.0" +version = "1.0.0" source = { editable = "." } dependencies = [ { name = "fastapi" },