Skip to content

Commit 90cc70e

Browse files
authored
Merge pull request #1 from kpn/fix/new-org
fix: move to new kpnnl org
2 parents 08b8929 + 505a2e4 commit 90cc70e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/publish-container.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
build-args: |
3535
AVRO_VERSION=${{ github.event.inputs.version }}
3636
tags: |
37-
kpnnv/avro-tools:latest
38-
kpnnv/avro-tools:${{ github.event.inputs.version }}
37+
kpnnl/avro-tools:latest
38+
kpnnl/avro-tools:${{ github.event.inputs.version }}
3939
- name: Docker Hub Description
4040
uses: peter-evans/dockerhub-description@v3
4141
with:
4242
username: ${{ secrets.DOCKER_USERNAME }}
4343
password: ${{ secrets.DOCKER_PASSWORD }}
4444
short-description: ${{ github.event.repository.description }}
45-
repository: "kpnnv/avro-tools"
45+
repository: "kpnnl/avro-tools"

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker-avro-tools
22

3-
![Docker Image Version (latest by date)](https://img.shields.io/docker/v/kpnnv/avro-tools?label=latest%20version)
3+
![Docker Image Version (latest by date)](https://img.shields.io/docker/v/kpnnl/avro-tools?label=latest%20version)
44

55
Container image for [avro-tools](https://avro.apache.org/docs/1.11.1/getting-started-java/#serializing-and-deserializing-with-code-generation)
66

@@ -38,7 +38,7 @@ Check for new versions:
3838
### Pull image
3939

4040
```sh
41-
docker pull kpnnv/avro-tools:1.10.0
41+
docker pull kpnnl/avro-tools:1.10.0
4242
```
4343

4444
### AVDL to AVSC conversion example
@@ -47,7 +47,7 @@ Use to validate avro json schemas:
4747

4848
```sh
4949
docker run --rm --user="$(id -u)" -v "$(pwd)":/avro \
50-
kpnnv/avro-tools:1.10.0 \
50+
kpnnl/avro-tools:1.10.0 \
5151
idl2schemata {file}.avdl {target-folder}
5252
```
5353

@@ -56,7 +56,7 @@ docker run --rm --user="$(id -u)" -v "$(pwd)":/avro \
5656
Use to validate avro json schemas:
5757

5858
```sh
59-
docker run --rm kpnnv/avro-tools
59+
docker run --rm kpnnl/avro-tools
6060
```
6161

6262
## Acknowledgments

scripts/build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh -e
22

3-
docker build -t avro-tools:latest -t kpnnv/avro-tools:1.10.0 -t kpnnv/avro-tools:latest .
3+
docker build -t avro-tools:latest -t kpnnl/avro-tools:1.10.0 -t kpnnl/avro-tools:latest .

scripts/publish

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh -e
22

3-
docker push kpnnv/avro-tools --all-tags
3+
docker push kpnnl/avro-tools --all-tags

0 commit comments

Comments
 (0)