From cfb5db312c88453061e15ac5b82bd6da566c4f01 Mon Sep 17 00:00:00 2001 From: Deda Date: Wed, 1 Nov 2023 12:17:11 +0100 Subject: [PATCH] Fix memgraph binary download URL --- .github/workflows/docker_publish.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml index a58981eb6..fa3fcf357 100644 --- a/.github/workflows/docker_publish.yml +++ b/.github/workflows/docker_publish.yml @@ -66,8 +66,8 @@ jobs: - name: Download memgraph binary run: | - curl -L https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11/memgraph_${MEMGRAPH_VERSION}-1_amd64.deb > memgraph-amd64.deb - curl -L https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11-aarch64/memgraph_${MEMGRAPH_VERSION}-1_arm64.deb > memgraph-arm64.deb + curl -L https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11/memgraph_${MEMGRAPH_VERSION}+5~b2de962a3-1_amd64.deb > memgraph-amd64.deb + curl -L https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11-aarch64/memgraph_${MEMGRAPH_VERSION}+5~b2de962a3-1_arm64.deb > memgraph-arm64.deb - name: Build & push prod docker images run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e2b1b99c..75ef4ea39 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -40,8 +40,8 @@ jobs: - name: Download memgraph binaries run: | if [ "${{ env.OFFICIAL }}" = "true" ]; then - curl -L "https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11/memgraph_${MEMGRAPH_VERSION}-1_amd64.deb" > memgraph-amd64.deb - curl -L "https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11-aarch64/memgraph_${MEMGRAPH_VERSION}-1_arm64.deb" > memgraph-arm64.deb + curl -L "https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11/memgraph_${MEMGRAPH_VERSION}+5~b2de962a3-1_amd64.deb" > memgraph-amd64.deb + curl -L "https://download.memgraph.com/memgraph/v${MEMGRAPH_VERSION}/debian-11-aarch64/memgraph_${MEMGRAPH_VERSION}+5~b2de962a3-1_arm64.deb" > memgraph-arm64.deb else sudo apt update && sudo apt install -y ca-certificates wget git wget -q https://s3.eu-west-1.amazonaws.com/deps.memgraph.io/memgraph-unofficial/memgraph_${MEMGRAPH_VERSION}-1_amd64.deb -O memgraph-amd64.deb