diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 88a0229..534be43 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -35,6 +35,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . + file: Containerfile push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/Dockerfile b/Containerfile similarity index 100% rename from Dockerfile rename to Containerfile diff --git a/README.md b/README.md index 984c8dd..97750e0 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ Then install all the requirements and build the package: ### Docker -Pull the [latest image](https://hub.docker.com/r/krateng/maloja) or check out the repository and use the included Dockerfile. +Pull the [latest image](https://hub.docker.com/r/krateng/maloja) or check out the repository and use the included Containerfile. Of note are these settings which should be passed as environmental variables to the container: diff --git a/maloja/__pkginfo__.py b/maloja/__pkginfo__.py index 9e1199e..27a8f75 100644 --- a/maloja/__pkginfo__.py +++ b/maloja/__pkginfo__.py @@ -4,7 +4,7 @@ # you know what f*ck it # this is hardcoded for now because of that damn project / package name discrepancy # i'll fix it one day -VERSION = "2.14.7" +VERSION = "2.14.10" HOMEPAGE = "https://github.com/krateng/maloja" diff --git a/pyproject.toml b/pyproject.toml index effd0d4..d3f69a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "malojaserver" -version = "2.14.9" +version = "2.14.10" description = "Self-hosted music scrobble database" readme = "./README.md" requires-python = ">=3.6"