Skip to content

Commit b5b3acb

Browse files
committed
initial commit
1 parent 77a232b commit b5b3acb

File tree

274 files changed

+35873
-19632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+35873
-19632
lines changed

.github/workflows/generate-and-publish-sdk-sources.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/generate-docs-site.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
on:
2+
push:
3+
4+
jobs:
5+
generate-and-publish:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout Repository
9+
uses: actions/checkout@v4
10+
11+
- name: Set Up JDK
12+
uses: actions/setup-java@v3
13+
with:
14+
distribution: 'temurin'
15+
java-version: '17'
16+
17+
- name: Install Post Processor
18+
working-directory: generator/src/main/resources/post-processor
19+
run: npm ci && npm run clean && npm run compile
20+
21+
- name: Generate SDK
22+
working-directory: generator
23+
run: |
24+
export KOTLIN_POST_PROCESS_FILE="npm run --prefix src/main/resources/post-processor process"
25+
26+
27+
- name: Publish Snapshots
28+
env:
29+
GPG_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
30+
GPG_SECRET: ${{ secrets.GPG_PRIVATE_KEY }}
31+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
32+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
33+
run: ./gradlew publishSnapshots

.github/workflows/integration-tests.yaml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/pr-auto-approve.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/release-sdk.yaml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/run-examples.yaml

Lines changed: 0 additions & 65 deletions
This file was deleted.

.github/workflows/verify-examples-and-tests.yaml

Lines changed: 0 additions & 56 deletions
This file was deleted.

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ version = "1.0-SNAPSHOT"
77

88
repositories {
99
mavenCentral()
10+
maven {
11+
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
12+
}
1013
}
1114

1215
dependencies {

0 commit comments

Comments
 (0)