From 4fc515a9835c9506b839fefade7f2a95e0a2ff6f Mon Sep 17 00:00:00 2001 From: r4sas Date: Sat, 20 Dec 2025 17:25:44 +0000 Subject: [PATCH] [gha] docker: build 2.58.0 release container Signed-off-by: r4sas --- .github/workflows/docker.yml | 26 +------------------------- 1 file changed, 1 insertion(+), 25 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 02b775a4..aa73cece 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,9 +2,6 @@ name: Build containers on: push: - branches: - - openssl - - docker paths: - .github/workflows/docker.yml - contrib/docker/** @@ -15,8 +12,6 @@ on: - libi2pd_client/** - Makefile - Makefile.linux - tags: - - '*' jobs: build: @@ -103,28 +98,10 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Create and push latest manifest image to Docker Hub - if: ${{ !startsWith(github.ref, 'refs/tags/') }} - uses: Noelware/docker-manifest-action@v1 - with: - tags: purplei2p/i2pd:latest - inputs: purplei2p/i2pd:latest-amd64,purplei2p/i2pd:latest-i386,purplei2p/i2pd:latest-arm64,purplei2p/i2pd:latest-armv7 - push: true - - - name: Create and push latest manifest image to GHCR - if: ${{ !startsWith(github.ref, 'refs/tags/') }} - uses: Noelware/docker-manifest-action@v1 - with: - tags: ghcr.io/purplei2p/i2pd:latest - inputs: ghcr.io/purplei2p/i2pd:latest-amd64,ghcr.io/purplei2p/i2pd:latest-i386,ghcr.io/purplei2p/i2pd:latest-arm64,ghcr.io/purplei2p/i2pd:latest-armv7 - push: true - - name: Store release version to env - if: ${{ startsWith(github.ref, 'refs/tags/') }} - run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV + run: echo "RELEASE_VERSION=2.58.0" >> $GITHUB_ENV - name: Create and push release manifest to Docker Hub - if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: Noelware/docker-manifest-action@v1 with: tags: purplei2p/i2pd:latest,purplei2p/i2pd:latest-release,purplei2p/i2pd:release-${{ env.RELEASE_VERSION }} @@ -132,7 +109,6 @@ jobs: push: true - name: Create and push release manifest to GHCR - if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: Noelware/docker-manifest-action@v1 with: tags: ghcr.io/purplei2p/i2pd:latest,ghcr.io/purplei2p/i2pd:latest-release,ghcr.io/purplei2p/i2pd:release-${{ env.RELEASE_VERSION }}