Skip to content

Commit

Permalink
Prepare for 2.8.0 release of Memgraph (#218)
Browse files Browse the repository at this point in the history
* add version 2.8 and self-hosted release workflow

* revert self-hosted workflow

* change tag syntax
  • Loading branch information
brunos252 committed May 18, 2023
1 parent f21446d commit f8e0db9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Publish Docker image
on:
push:
tags:
- v*.*.*
- v*.*
- v*.*-memgraph-*.*
- v*.*.*-memgraph-*.*

jobs:
build_and_release_docker:
name: Build & release Docker image with tag
runs-on: ubuntu-latest
runs-on: ubuntu-latest
env:
DOCKER_ORGANIZATION_NAME: memgraph
DOCKER_REPOSITORY_NAME: memgraph-mage
MEMGRAPH_VERSION: 2.7.0
MEMGRAPH_VERSION: 2.8.0
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
build:
runs-on: ubuntu-latest
env:
MEMGRAPH_VERSION: 2.7.0
MEMGRAPH_VERSION: 2.8.0
strategy:
matrix:
architecture: ["amd64", "arm64"]
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "cpp/memgraph"]
path = cpp/memgraph
url = https://github.com/memgraph/memgraph.git
branch = release/2.7
branch = release/2.8
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM debian:bullseye as base

USER root

ARG MG_VERSION=2.7.0
ARG MG_VERSION=2.8.0
ARG PY_VERSION_DEFAULT
ENV MG_VERSION ${MG_VERSION}
ENV PY_VERSION ${PY_VERSION_DEFAULT}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cugraph
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG CUGRAPH_VERSION=22.02
ARG CUDA_VERSION=11.5
ARG CUDA_VERSION_MINOR=11.5.2
ARG PY_VERSION=3.8
ARG MG_VERSION=2.7.0
ARG MG_VERSION=2.8.0

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

Expand Down

0 comments on commit f8e0db9

Please sign in to comment.