push version
Some checks failed
ci/woodpecker/push/tests Pipeline failed

This commit is contained in:
Ivan Schaller 2022-06-17 23:57:52 +02:00
parent 10c9fc47b7
commit a11c9438e7
8 changed files with 22 additions and 12 deletions

View file

@ -30,6 +30,7 @@ pipeline:
dockerfile: docker/Dockerfile.amd64
auto_tag: true
auto_tag_suffix: linux-amd64
build_args: BUILD_DATE="$(date +%Y-%m-%d_%H:%M)"
# build docker image for arm64
dryrun-build-arm64:
@ -44,5 +45,6 @@ pipeline:
platforms: linux/arm64
dockerfile: docker/Dockerfile.arm64
auto_tag: true
auto_tag_suffix: linux-arm64
auto_tag_suffix: linux-arm64#
build_args: BUILD_DATE="$(date +%Y-%m-%d_%H:%M)"

View file

@ -29,6 +29,7 @@ pipeline:
dockerfile: docker/Dockerfile.amd64
auto_tag: true
auto_tag_suffix: linux-amd64
build_args: BUILD_DATE="$(date +%Y-%m-%d_%H:%M)"
username:
from_secret: cr-dhub-username
password:
@ -47,6 +48,7 @@ pipeline:
dockerfile: docker/Dockerfile.arm64
auto_tag: true
auto_tag_suffix: linux-arm64
build_args: BUILD_DATE="$(date +%Y-%m-%d_%H:%M)"
username:
from_secret: cr-dhub-username
password:

View file

@ -9,6 +9,16 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Add support for more sites
## [2.1.5] - 2022-06-17
### Fixed
- Image names now have a suffix, as some comic readers have problems with no suffix
### Added
- `--format` section in the README
## [2.1.4] - 2022-05-29
### Fixed

View file

@ -1,13 +1,11 @@
FROM cr.44net.ch/baseimages/debian-s6:1.3.5
# set version label
ENV MDLP_VERSION=2.1.5
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL build_version="Version: ${MDLP_VERSION} - Build-date: ${BUILD_DATE}"
LABEL maintainer="Ivan Schaller"
# manga-dlp version
ENV MDLP_VERSION=2.1.4
# install packages
RUN \

View file

@ -1,13 +1,11 @@
FROM cr.44net.ch/baseimages/debian-s6:1.3.5
# set version label
ENV MDLP_VERSION=2.1.5
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL build_version="Version: ${MDLP_VERSION} - Build-date: ${BUILD_DATE}"
LABEL maintainer="Ivan Schaller"
# manga-dlp version
ENV MDLP_VERSION=2.1.4
# install packages
RUN \

View file

@ -3,7 +3,7 @@ import sys
from mangadlp.input import get_args
mangadlp_version = "2.1.4"
mangadlp_version = "2.1.5"
def get_input():

View file

@ -4,7 +4,7 @@ from pathlib import Path
import mangadlp.app as app
mangadlp_version = "2.1.4"
mangadlp_version = "2.1.5"
def check_args(args):

View file

@ -7,7 +7,7 @@ long_description = readme.read_text()
setuptools.setup(
name="manga-dlp",
version="2.1.4",
version="2.1.5",
author="Ivan Schaller",
author_email="ivan@schaller.sh",
description="A cli manga downloader",