diff --git a/.github/workflows/build-graphscope-images-linux.yml b/.github/workflows/build-graphscope-images-linux.yml index e2bfc585c4c8..47e055e5fd16 100644 --- a/.github/workflows/build-graphscope-images-linux.yml +++ b/.github/workflows/build-graphscope-images-linux.yml @@ -182,8 +182,6 @@ jobs: make interactive-executor CI=false VERSION=${SHORT_SHA} make learning CI=false VERSION=${SHORT_SHA} - - - name: Release Nightly Image if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope' }} env: @@ -377,6 +375,11 @@ jobs: sudo docker manifest push ${{ env.REGISTRY }}/graphscope/learning:${version}a${time} sudo docker manifest push ${{ env.REGISTRY }}/graphscope/dataset:${version}a${time} + - name: Extract Tag Name + if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }} + id: tag + run: echo "TAG=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT + - name: Create and Push Docker Release Manifest if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }} env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2594082ae579..c70d22122876 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -157,6 +157,11 @@ jobs: with: submodules: true + - name: Extract Tag Name + if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && github.repository == 'alibaba/GraphScope' }} + id: tag + run: echo "TAG=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT + - name: Create and Push Docker Manifest env: docker_password: ${{ secrets.DOCKER_PASSWORD }} diff --git a/VERSION b/VERSION index d21d277be513..4e8f395fa5e3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.25.0 +0.26.0 diff --git a/analytical_engine/java/pom.xml b/analytical_engine/java/pom.xml index 4638a1c36c9d..0ddb3130ca45 100644 --- a/analytical_engine/java/pom.xml +++ b/analytical_engine/java/pom.xml @@ -64,7 +64,7 @@ - 0.25.0 + 0.26.0 0.1.2 0.19 3.3.11 diff --git a/charts/graphscope-store/Chart.yaml b/charts/graphscope-store/Chart.yaml index 9b75f1041bcf..feafd5d5f712 100644 --- a/charts/graphscope-store/Chart.yaml +++ b/charts/graphscope-store/Chart.yaml @@ -19,7 +19,7 @@ sources: maintainers: - name: GraphScope url: https://github.com/alibaba/graphscope -version: 0.25.0 +version: 0.26.0 dependencies: - condition: kafka.enabled diff --git a/charts/graphscope/Chart.yaml b/charts/graphscope/Chart.yaml index 5fc38448c6ce..877144659537 100644 --- a/charts/graphscope/Chart.yaml +++ b/charts/graphscope/Chart.yaml @@ -26,10 +26,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.25.0 +version: 0.26.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.25.0" +appVersion: "0.26.0"