Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build-dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
build-target: 'Sonatype,Docker'
devRelease: true
createTag: true
docker-multi-platform: true
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
build-target: 'Sonatype,Docker'
devRelease: false
createTag: true
docker-multi-platform: true
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
uses: th2-net/.github/.github/workflows/compound-java-dev.yml@main
with:
build-target: 'Sonatype,Docker'
docker-multi-platform: true
docker-username: ${{ github.actor }}
secrets:
docker-password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 2 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
FROM gradle:8.11.1-jdk21 AS build
ARG release_version
COPY ./ .
RUN gradle build dockerPrepare \
-Prelease_version=${release_version}

FROM adoptopenjdk/openjdk11:alpine
FROM amazoncorretto:11-alpine-jdk
WORKDIR /home
COPY --from=build /home/gradle/build/docker ./
COPY ./build/docker .
ENTRYPOINT ["/home/service/bin/service"]
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Csv codec (5.4.1)
# Csv codec (5.4.2)

## Description

Expand Down Expand Up @@ -150,6 +150,11 @@ spec:

## Release notes

### 5.4.2

+ Produce multi-platform docker image
+ migrated to [amazoncorretto:11-alpine-jdk](https://hub.docker.com/layers/library/amazoncorretto/11-alpine-jdk) docker image as base

### 5.4.1
+ Fixed: [[GH-73] set `csv` protocol during decode](https://github.com/th2-net/th2-codec-csv/issues/73)
+ Updated:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
release_version=5.4.1
release_version=5.4.2
description='th2 codec csv'
vcs_url=https://github.com/th2-net/th2-codec-csv
Loading