Publish SDKs
Konfig makes it easy to publish SDKs through our CLI.
_16❯ konfig publish --help_16Publish SDKs_16_16USAGE_16 $ konfig publish -g <value> [-d] [-t]_16_16FLAGS_16 -d, --debug_16 -g, --generator=<value> (required)_16 -t, --test_16_16DESCRIPTION_16 Publish SDKs_16_16EXAMPLES_16 $ konfig publish
To publish SDKs simply cd
into your SDK repository and provide the -g
flag a comma separated list of generator names.
Use the -d
flag to see what commands will be run to publish each SDK:
_10❯ konfig publish -g go,python,java,typescript,csharp -d_10DEBUG: mvn clean deploy_10DEBUG: rm -rf dist/_10DEBUG: python3 -m build_10DEBUG: twine check dist/*_10DEBUG: twine upload dist/*_10DEBUG: npm publish_10DEBUG: dotnet pack_10DEBUG: dotnet nuget push src/Acme.Net/bin/Debug/Acme.Net.1.0.0.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json