From c10606ef2a07e21d4714b0a9512ee587b778d221 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Wed, 23 Dec 2020 17:36:30 +0100 Subject: [PATCH] Only deploy snapshots for one arch Motivation: We need to find a way to deploy SNAPSHOTS for different arch with the same timestamp. Otherwise it will cause problems. See https://github.com/netty/netty/issues/10887 Modification: Skip all other deploys then x86_64 Result: Users are able to use SNAPSHOTS for x86_6 --- .github/workflows/ci-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-deploy.yml b/.github/workflows/ci-deploy.yml index f949cbab13..7208df32f5 100644 --- a/.github/workflows/ci-deploy.yml +++ b/.github/workflows/ci-deploy.yml @@ -56,6 +56,8 @@ jobs: runs-on: ubuntu-latest # We depend on the deploy of linux-x86_64 so we can download the dependencies needs: deploy-linux-x86_64 + # Skip for now until we figured out how to deploy SNAPSHOTS with the the same timestamps + if: ${{ false }} steps: - uses: s4u/maven-settings-action@v2.2.0 with: