Skip to content

Commit

Permalink
Feature/githubactions rn (#326)
Browse files Browse the repository at this point in the history
* added handling for generating releases and pushing neo4j-admin and reverseproxy images

* fixing the yaml and version update files
  • Loading branch information
harshitsinghvi22 authored Apr 5, 2024
1 parent dd41ffb commit 69729e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 2 additions & 4 deletions bin/gcloud/index_yaml_update
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,5 @@ helm pull neo4j/neo4j-admin --version "${NEO4J_VERSION}"
helm repo index . --merge index.yaml --url https://github.com/neo4j/helm-charts/releases/download/"${NEO4J_VERSION}"

git add index.yaml
git commit -m "Updating index.yaml with ${NEO4J_VERSION} entries and updating version to ${NEO4J_VERSION}"
git push
git tag -m "Tagging ${NEO4J_VERSION}" -a ${NEO4J_VERSION}
git push --tags
git commit -m "Updating index.yaml with ${NEO4J_VERSION} entries"
git push
6 changes: 5 additions & 1 deletion bin/gcloud/version_updates
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ then
else
echo "Neo4j version is same !!"
exit 1
fi
fi
git commit -m "Updating version to ${NEO4J_VERSION}"
git push
git tag -m "Tagging ${NEO4J_VERSION}" -a ${NEO4J_VERSION}
git push --tags

0 comments on commit 69729e2

Please sign in to comment.