From 1a4373daa69983a8e363fbcfe37ef9b781647695 Mon Sep 17 00:00:00 2001 From: pinto0309 Date: Wed, 22 May 2024 00:07:09 +0900 Subject: [PATCH] v1.22.1 --- .github/workflows/python-publish.yml | 14 +++++++------- README.md | 4 ++-- onnx2tf/__init__.py | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index a12dfdb3..2240c081 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -66,7 +66,7 @@ jobs: id: meta_gh uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push by digest to GCR id: build_gh uses: docker/build-push-action@v5 @@ -111,7 +111,7 @@ jobs: mkdir -p /tmp/digests/dh digest="${{ steps.build_dh.outputs.digest }}" touch "/tmp/digests/dh/${digest#sha256:}" - + - name: Upload digest uses: actions/upload-artifact@v4 with: @@ -119,7 +119,7 @@ jobs: path: /tmp/digests/* if-no-files-found: error retention-days: 1 - + merge: runs-on: ubuntu-latest needs: @@ -131,7 +131,7 @@ jobs: path: /tmp/digests pattern: digests-* merge-multiple: true - + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -151,10 +151,10 @@ jobs: working-directory: /tmp/digests/gh run: | docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ - $(printf '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@sha256:%s ' *) + $(printf '${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}@sha256:%s ' *) - name: Inspect image on GCR run: | - docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta_gh.outputs.version }} + docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta_gh.outputs.version }} # For Docker Hub - name: Log in to the Docker Hub @@ -172,7 +172,7 @@ jobs: working-directory: /tmp/digests/dh run: | docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ - $(printf '${{ env.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}@sha256:%s ' *) + $(printf '${{ env.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}@sha256:%s ' *) - name: Inspect image on Docker Hub run: | docker buildx imagetools inspect ${{ env.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.meta_dh.outputs.version }} diff --git a/README.md b/README.md index decc779b..064c7b1f 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,7 @@ Video speed is adjusted approximately 50 times slower than actual speed. docker run --rm -it \ -v `pwd`:/workdir \ -w /workdir \ - ghcr.io/pinto0309/onnx2tf:1.22.0 + ghcr.io/pinto0309/onnx2tf:1.22.1 or @@ -279,7 +279,7 @@ Video speed is adjusted approximately 50 times slower than actual speed. docker run --rm -it \ -v `pwd`:/workdir \ -w /workdir \ - docker.io/pinto0309/onnx2tf:1.22.0 + docker.io/pinto0309/onnx2tf:1.22.1 or diff --git a/onnx2tf/__init__.py b/onnx2tf/__init__.py index 7436cd03..586b5a10 100644 --- a/onnx2tf/__init__.py +++ b/onnx2tf/__init__.py @@ -1,3 +1,3 @@ from onnx2tf.onnx2tf import convert, main -__version__ = '1.22.0' +__version__ = '1.22.1'