Fix a few bugs in the new workflow

1. Typo in the preview repo name.
2. Combined the dry-run fail message into the test step
3. Converted the release metadata step to use jq
4. Removed redundant information from the container labels
This commit is contained in:
Nogweii
2023-05-29 16:54:20 -07:00
parent 11a5320b45
commit b16bab9098
2 changed files with 16 additions and 31 deletions

View File

@@ -1,8 +1,6 @@
FROM eclipse-temurin:11-jre-jammy
ARG BUILD_DATE
ARG IMAGE_VERSION
ARG TACHIDESK_GIT_COMMIT
ARG TACHIDESK_RELEASE_TAG
ARG TACHIDESK_FILENAME
ARG TACHIDESK_RELEASE_DOWNLOAD_URL
@@ -16,8 +14,7 @@ LABEL maintainer="suwayomi" \
org.opencontainers.image.description="This image is used to start suwayomi server in a container" \
org.opencontainers.image.vendor="suwayomi" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.version=$IMAGE_VERSION \
tachidesk.git_commit=$TACHIDESK_GIT_COMMIT \
org.opencontainers.image.version=$TACHIDESK_RELEASE_TAG \
tachidesk.docker_commit=$TACHIDESK_DOCKER_GIT_COMMIT \
tachidesk.release_tag=$TACHIDESK_RELEASE_TAG \
tachidesk.filename=$TACHIDESK_FILENAME \