Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Build SDK

Build SDK #2851

Workflow file for this run

name: Build SDK
on:
workflow_dispatch:
jobs:
build-typescript-sdk:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Generate SDK
run: |
npm install @openapitools/openapi-generator-cli -g
make build
- name: Push to main
run: |
git config --global user.email "alex.tran1502@gmail.com"
git config --global user.name "Alex Tran"
git add .
git commit -m "Update SDK"
git push