Skip to content

clean up HttpClient, rename baseUrl to host to match CLI #334

clean up HttpClient, rename baseUrl to host to match CLI

clean up HttpClient, rename baseUrl to host to match CLI #334

Workflow file for this run

name: Update API Spec
on:
push:
branches-ignore:
- main
workflow_dispatch:
concurrency:
group: api-spec-${{ github.ref }}
cancel-in-progress: true
jobs:
update-api-spec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Generate spec
shell: bash
run: |
npm install
npm run gen
- uses: EndBug/add-and-commit@v9
with:
add: .
message: "Autogenerate config update"
default_author: github_actions