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

release: 0.1.0-alpha.1 #4

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
20 changes: 10 additions & 10 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# syntax=docker/dockerfile:1
FROM debian:bookworm-slim AS stainless
FROM debian:bookworm-slim

RUN apt-get update && apt-get install -y \
nodejs \
npm \
yarnpkg \
libxkbcommon0 \
ca-certificates \
git \
golang \
unzip \
libc++1 \
vim \
&& apt-get clean autoclean

# Yarn
RUN ln -sf /usr/bin/yarnpkg /usr/bin/yarn
ENV GOPATH=/go
ENV PATH=$GOPATH/bin:$PATH

WORKDIR /workspace

COPY package.json yarn.lock /workspace/

RUN yarn install

COPY . /workspace
10 changes: 0 additions & 10 deletions .eslintrc.js

This file was deleted.

19 changes: 6 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,13 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest
if: github.repository == 'stainless-sdks/audioreworkvisions-node'
if: github.repository == 'luckylennoxll/wizard-api'

steps:
- uses: actions/checkout@v3

- name: Setup go
uses: actions/setup-go@v4

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: |
yarn install

- name: Check types
run: |
yarn build
- run: |
go build ./...
17 changes: 17 additions & 0 deletions .github/workflows/release-doctor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Doctor
on:
pull_request:
workflow_dispatch:

jobs:
release_doctor:
name: release doctor
runs-on: ubuntu-latest
if: github.repository == 'luckylennoxll/wizard-api' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')

steps:
- uses: actions/checkout@v3

- name: Check release environment
run: |
bash ./scripts/check-release-environment
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
node_modules
yarn-error.log
codegen.log
dist
/deno
/*.tgz
.idea/
7 changes: 0 additions & 7 deletions .prettierignore

This file was deleted.

7 changes: 0 additions & 7 deletions .prettierrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.1.0-alpha.1"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.1.0-alpha.1 (2024-02-09)

Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/luckylennoxll/wizard-api/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)

### Features

* Add initial Stainless SDK ([91be3f3](https://github.com/luckylennoxll/wizard-api/commit/91be3f3396b35d0653e1193696888266e3d3a74e))
* OpenAPI spec update ([#1](https://github.com/luckylennoxll/wizard-api/issues/1)) ([5b9b28b](https://github.com/luckylennoxll/wizard-api/commit/5b9b28bf7867d211d0638d3b2284aebecc3217af))
* OpenAPI spec update ([#2](https://github.com/luckylennoxll/wizard-api/issues/2)) ([4e57854](https://github.com/luckylennoxll/wizard-api/commit/4e57854986204660f94062676027b125c4d0ccdc))
107 changes: 0 additions & 107 deletions CONTRIBUTING.md

This file was deleted.

Loading
Loading