Skip to content

Commit

Permalink
Added push to dockerhub and code owners (#2)
Browse files Browse the repository at this point in the history
* Added push to dockerhub and code owners

* Also update metadata
  • Loading branch information
ali-ince authored Nov 8, 2023
1 parent 94ef9de commit 3cb6f39
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @neo4j-field/team-connectors
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ jobs:
push_to_registries:
name: Push Docker image to multiple registries
runs-on: ubuntu-latest
environment: Release
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Log in to the Docker Hub
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Log in to the Github Container Registry
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc
with:
Expand All @@ -27,12 +34,14 @@ jobs:
uses: docker/metadata-action@818d4b7b91585d195f67373fd9cb0332e31a7175
with:
images: |
neo4j/bigquery-connector
ghcr.io/${{ github.repository }}
- name: Build and push Docker images
uses: docker/build-push-action@2eb1c1961a95fc15694676618e422e8ba1d63825
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 0 additions & 4 deletions pattern_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
"NodePattern",
"EdgePattern",
"parse_pattern",
"__version__",
"__author__",
]
__author__ = "Neo4j"
__version__ = "0.5.1"

from .Pattern import Pattern, NodePattern, EdgePattern, parse_pattern
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@

url="https://github.com/neo4j-field/bigquery-connector",
author="Neo4j, Inc.",
author_email="[email protected]",

description="A connector for building a Neo4j Graph from Google BigQuery",
description="Google BigQuery connector for AuraDS & Neo4j with GDS",
long_description=long_description,
long_description_content_type="text/markdown",

license="Apache License 2.0",

classifiers = [
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
Expand Down
2 changes: 1 addition & 1 deletion templates/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"__author__",
]
__author__ = "Neo4j"
__version__ = "0.5.1"
__version__ = "0.6.0"

from . import constants, util
from .bq_client import BigQuerySource, BigQuerySink
Expand Down

0 comments on commit 3cb6f39

Please sign in to comment.