Skip to content

Commit

Permalink
ci: fixes failure during pushing image and pre-release v0.26.0 (#3339)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Nov 9, 2023
1 parent 8235b29 commit 8d4e00b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-graphscope-images-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.25.0
0.26.0
2 changes: 1 addition & 1 deletion analytical_engine/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</modules>

<properties>
<revision>0.25.0</revision>
<revision>0.26.0</revision>
<fastffi.version>0.1.2</fastffi.version>
<compile-testing.version>0.19</compile-testing.version>
<cupid.sdk.version>3.3.11</cupid.sdk.version>
Expand Down
2 changes: 1 addition & 1 deletion charts/graphscope-store/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/graphscope/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 8d4e00b

Please sign in to comment.