Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a note about publishing with dockerx #24057

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions tools/integrations/manage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ set -x

. tools/lib/lib.sh

# If you are looking at this file because you find yourself needing to publish a connector image manually, you might not need to do all of this!
# If the connector you are publishing is a python connector (e.g. not using our base images), you can do the following:
#
# # NAME="source-foo"; VERSION="1.2.3"
#
# git pull
#
# cd airbyte-integrations/connectors/$NAME
#
# docker buildx build . --platform "linux/amd64,linux/arm64" --tag airbyte/$NAME:latest --push
# docker buildx build . --platform "linux/amd64,linux/arm64" --tag airbyte/$NAME:$VERSION --push


USAGE="
Usage: $(basename "$0") <cmd>
For publish, if you want to push the spec to the spec cache, provide a path to a service account key file that can write to the cache.
Expand Down