fix kube deploy cmd
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Quentin Ferrand 2022-04-28 21:36:47 +02:00
parent 5ed1d0680a
commit 248c4b7846
3 changed files with 3 additions and 3 deletions

View file

@ -54,7 +54,7 @@ steps:
kubernetes_token: kubernetes_token:
from_secret: kube_token from_secret: kube_token
commands: commands:
- kubectl set image deployment/tenkan fqserv=takaoni/tenkan:"${DRONE_COMMIT_SHA:0:8}" -n gemini - kubectl set image deployment/tenkan tenkan=takaoni/tenkan:"${DRONE_COMMIT_SHA:0:8}" -n gemini
when: when:
branch: branch:
- master - master

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "tenkan" name = "tenkan"
version = "0.2.0" version = "0.2.1"
description = "RSS/atom feed converter from html to gemini" description = "RSS/atom feed converter from html to gemini"
authors = ["Quentin Ferrand <quentin.ferrand@protonmail.com>"] authors = ["Quentin Ferrand <quentin.ferrand@protonmail.com>"]
readme = 'README.md' readme = 'README.md'

View file

@ -18,7 +18,7 @@ here = os.path.abspath(os.path.dirname(__file__))
setup( setup(
name='tenkan', name='tenkan',
version='0.2.0', version='0.2.1',
long_description=open('README.md').read(), long_description=open('README.md').read(),
description='RSS/atom feed converter from html to gemini', description='RSS/atom feed converter from html to gemini',
long_description_content_type='text/markdown', long_description_content_type='text/markdown',