Compare commits
2 commits
3479365c52
...
e4e3c890b1
Author | SHA1 | Date | |
---|---|---|---|
e4e3c890b1 | |||
86cbe478a6 |
4 changed files with 23 additions and 23 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.3.1
|
current_version = 0.4.0
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|
40
.drone.yml
40
.drone.yml
|
@ -36,26 +36,26 @@ steps:
|
||||||
depends_on:
|
depends_on:
|
||||||
- install dependencies
|
- install dependencies
|
||||||
|
|
||||||
- name: build container
|
# - name: build container
|
||||||
image: quay.io/buildah/stable
|
# image: quay.io/buildah/stable
|
||||||
when:
|
# when:
|
||||||
event:
|
# event:
|
||||||
- tag
|
# - tag
|
||||||
commands:
|
# commands:
|
||||||
- buildah login -u $DOCKER_USER -p $DOCKER_PASS -- $DOCKER_REGISTRY
|
# - buildah login -u $DOCKER_USER -p $DOCKER_PASS -- $DOCKER_REGISTRY
|
||||||
- buildah manifest create ucast
|
# - 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 amd64 -f deploy/Dockerfile .
|
||||||
- buildah bud --tag code.thetadev.de/hsa/ucast:latest --manifest ucast --arch arm64 -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
|
# - buildah manifest push --all ucast docker://code.thetadev.de/hsa/ucast:latest
|
||||||
environment:
|
# environment:
|
||||||
DOCKER_REGISTRY:
|
# DOCKER_REGISTRY:
|
||||||
from_secret: docker_registry
|
# from_secret: docker_registry
|
||||||
DOCKER_USER:
|
# DOCKER_USER:
|
||||||
from_secret: docker_username
|
# from_secret: docker_username
|
||||||
DOCKER_PASS:
|
# DOCKER_PASS:
|
||||||
from_secret: docker_password
|
# from_secret: docker_password
|
||||||
depends_on:
|
# depends_on:
|
||||||
- test
|
# - test
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "ucast"
|
name = "ucast"
|
||||||
version = "0.3.1"
|
version = "0.4.0"
|
||||||
description = "YouTube to Podcast converter"
|
description = "YouTube to Podcast converter"
|
||||||
authors = ["Theta-Dev <t.testboy@gmail.com>"]
|
authors = ["Theta-Dev <t.testboy@gmail.com>"]
|
||||||
packages = [
|
packages = [
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
__version__ = "0.3.1"
|
__version__ = "0.4.0"
|
||||||
|
|
||||||
|
|
||||||
def template_context(request):
|
def template_context(request):
|
||||||
|
|
Loading…
Reference in a new issue