Compare commits

...

2 commits

Author SHA1 Message Date
e4e3c890b1 remove docker build step
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-05 14:10:45 +02:00
86cbe478a6 Bump version: 0.3.1 → 0.4.0 2022-07-05 13:57:07 +02:00
4 changed files with 23 additions and 23 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.4.0
commit = True
tag = True

View file

@ -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

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "ucast"
version = "0.3.1"
version = "0.4.0"
description = "YouTube to Podcast converter"
authors = ["Theta-Dev <t.testboy@gmail.com>"]
packages = [

View file

@ -1,4 +1,4 @@
__version__ = "0.3.1"
__version__ = "0.4.0"
def template_context(request):