From 86cbe478a65cef68527fc4944e92da7e952c2a98 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Tue, 5 Jul 2022 13:57:07 +0200 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20version:=200.3.1=20=E2=86=92=200.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- ucast/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 02482c5..e592fa8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.4.0 commit = True tag = True diff --git a/pyproject.toml b/pyproject.toml index 96ab12a..7ead845 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ucast" -version = "0.3.1" +version = "0.4.0" description = "YouTube to Podcast converter" authors = ["Theta-Dev "] packages = [ diff --git a/ucast/__init__.py b/ucast/__init__.py index 521568f..7907732 100644 --- a/ucast/__init__.py +++ b/ucast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.1" +__version__ = "0.4.0" def template_context(request): From e4e3c890b1cc3947039c2b1496beb1dab8c44bda Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Tue, 5 Jul 2022 14:10:45 +0200 Subject: [PATCH 2/2] remove docker build step --- .drone.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.drone.yml b/.drone.yml index 297b7c6..5c94ab7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -36,26 +36,26 @@ steps: depends_on: - install dependencies - - name: build container - image: quay.io/buildah/stable - when: - event: - - tag - commands: - - buildah login -u $DOCKER_USER -p $DOCKER_PASS -- $DOCKER_REGISTRY - - buildah manifest create ucast - - buildah bud --tag code.thetadev.de/hsa/ucast:latest --manifest ucast --arch amd64 -f deploy/Dockerfile . - - buildah bud --tag code.thetadev.de/hsa/ucast:latest --manifest ucast --arch arm64 -f deploy/Dockerfile . - - buildah manifest push --all ucast docker://code.thetadev.de/hsa/ucast:latest - environment: - DOCKER_REGISTRY: - from_secret: docker_registry - DOCKER_USER: - from_secret: docker_username - DOCKER_PASS: - from_secret: docker_password - depends_on: - - test +# - name: build container +# image: quay.io/buildah/stable +# when: +# event: +# - tag +# commands: +# - buildah login -u $DOCKER_USER -p $DOCKER_PASS -- $DOCKER_REGISTRY +# - buildah manifest create ucast +# - buildah bud --tag code.thetadev.de/hsa/ucast:latest --manifest ucast --arch amd64 -f deploy/Dockerfile . +# - buildah bud --tag code.thetadev.de/hsa/ucast:latest --manifest ucast --arch arm64 -f deploy/Dockerfile . +# - buildah manifest push --all ucast docker://code.thetadev.de/hsa/ucast:latest +# environment: +# DOCKER_REGISTRY: +# from_secret: docker_registry +# DOCKER_USER: +# from_secret: docker_username +# DOCKER_PASS: +# from_secret: docker_password +# depends_on: +# - test volumes: - name: cache