From 829a4cc8827b23c38b30ba94c5e7d257fbcac9c1 Mon Sep 17 00:00:00 2001 From: Philippe Merle Date: Wed, 6 Aug 2025 22:51:12 +0300 Subject: [PATCH 1/3] Update release.yml --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a83a430..3ebb564 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,10 +76,10 @@ jobs: - name: Extract version from release tag id: get_version - run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV + run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV - name: Build and push Docker multi-arch image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v5 with: context: . platforms: linux/amd64,linux/arm64 From 52df92bcc5584cf35752cc34e4e692490517aec0 Mon Sep 17 00:00:00 2001 From: Philippe Merle Date: Thu, 7 Aug 2025 08:44:44 +0300 Subject: [PATCH 2/3] Create tmp.yml --- .github/workflows/tmp.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/tmp.yml diff --git a/.github/workflows/tmp.yml b/.github/workflows/tmp.yml new file mode 100644 index 0000000..f016af6 --- /dev/null +++ b/.github/workflows/tmp.yml @@ -0,0 +1,30 @@ +name: Release Image 0.5.0 + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} + tags: philippemerle/kubediagrams:0.5.0 From 0af1e54d85a5c30b52a54f402b59d00d149345c5 Mon Sep 17 00:00:00 2001 From: Philippe Merle Date: Thu, 7 Aug 2025 08:46:11 +0300 Subject: [PATCH 3/3] Update tmp.yml --- .github/workflows/tmp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tmp.yml b/.github/workflows/tmp.yml index f016af6..b6eee50 100644 --- a/.github/workflows/tmp.yml +++ b/.github/workflows/tmp.yml @@ -26,5 +26,5 @@ jobs: with: context: . platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} + push: true tags: philippemerle/kubediagrams:0.5.0