SDKgen Code Generator
ActionsTags
(2)This GitHub action integrates the SDKgen code generator.
It reads the sdkgen.json schema file in your current working directory and generates all
defined dependencies, it also automatically commits then generated code to your repository. To obtain a client id and
secret you need to register an account at sdkgen.app.
Required The sdkgen.app client id, this is either your username or an app key.
Required The sdkgen.app client secret, this is either your password or an app secret.
name: SDKgen
on:
- workflow_dispatch
permissions:
contents: 'write'
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: apioo/sdkgen-generator-action@v0.3
with:
client_id: '${{ secrets.SDKGEN_CLIENT_ID }}'
client_secret: '${{ secrets.SDKGEN_CLIENT_SECRET }}'SDKgen Code Generator is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.