Skip to content

Commit f8e0db9

Browse files
authored
Prepare for 2.8.0 release of Memgraph (#218)
* add version 2.8 and self-hosted release workflow * revert self-hosted workflow * change tag syntax
1 parent f21446d commit f8e0db9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/docker_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: Publish Docker image
22
on:
33
push:
44
tags:
5-
- v*.*.*
6-
- v*.*
5+
- v*.*-memgraph-*.*
6+
- v*.*.*-memgraph-*.*
77

88
jobs:
99
build_and_release_docker:
1010
name: Build & release Docker image with tag
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-latest
1212
env:
1313
DOCKER_ORGANIZATION_NAME: memgraph
1414
DOCKER_REPOSITORY_NAME: memgraph-mage
15-
MEMGRAPH_VERSION: 2.7.0
15+
MEMGRAPH_VERSION: 2.8.0
1616
steps:
1717
- name: Checkout repository and submodules
1818
uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
env:
14-
MEMGRAPH_VERSION: 2.7.0
14+
MEMGRAPH_VERSION: 2.8.0
1515
strategy:
1616
matrix:
1717
architecture: ["amd64", "arm64"]

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "cpp/memgraph"]
22
path = cpp/memgraph
33
url = https://github.com/memgraph/memgraph.git
4-
branch = release/2.7
4+
branch = release/2.8

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM debian:bullseye as base
44

55
USER root
66

7-
ARG MG_VERSION=2.7.0
7+
ARG MG_VERSION=2.8.0
88
ARG PY_VERSION_DEFAULT
99
ENV MG_VERSION ${MG_VERSION}
1010
ENV PY_VERSION ${PY_VERSION_DEFAULT}

Dockerfile.cugraph

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ARG CUGRAPH_VERSION=22.02
22
ARG CUDA_VERSION=11.5
33
ARG CUDA_VERSION_MINOR=11.5.2
44
ARG PY_VERSION=3.8
5-
ARG MG_VERSION=2.7.0
5+
ARG MG_VERSION=2.8.0
66

77
FROM rapidsai/rapidsai:${CUGRAPH_VERSION}-cuda${CUDA_VERSION}-runtime-ubuntu20.04-py${PY_VERSION} as cugraph-dev
88

0 commit comments

Comments
 (0)