|
1 | | -name: Release all SDKs |
| 1 | +# This is deprecated - use the individual release workflows instead |
| 2 | +# this is wrong because SDK don't just have one version, they have multiple versions |
2 | 3 |
|
3 | | -on: |
4 | | - workflow_dispatch: |
5 | | - inputs: |
6 | | - version: |
7 | | - description: "The version of the Go SDK that you would like to release" |
8 | | - required: true |
9 | | - type: string |
| 4 | +# name: Release all SDKs |
10 | 5 |
|
11 | | -env: |
12 | | - FERN_TOKEN: ${{ secrets.FERN_TOKEN }} |
13 | | - NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |
14 | | - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} |
15 | | - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} |
16 | | - PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |
17 | | - RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} |
18 | | - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 6 | +# on: |
| 7 | +# workflow_dispatch: |
| 8 | +# inputs: |
| 9 | +# version: |
| 10 | +# description: "The version of the Go SDK that you would like to release" |
| 11 | +# required: true |
| 12 | +# type: string |
19 | 13 |
|
20 | | -jobs: |
21 | | - csharp: |
22 | | - uses: ./.github/workflows/release-csharp-sdk.yml |
23 | | - secrets: inherit |
24 | | - with: |
25 | | - version: ${{ inputs.version }} |
| 14 | +# env: |
| 15 | +# FERN_TOKEN: ${{ secrets.FERN_TOKEN }} |
| 16 | +# NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |
| 17 | +# MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} |
| 18 | +# MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} |
| 19 | +# PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} |
| 20 | +# RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} |
| 21 | +# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 22 | + |
| 23 | +# jobs: |
| 24 | +# csharp: |
| 25 | +# uses: ./.github/workflows/release-csharp-sdk.yml |
| 26 | +# secrets: inherit |
| 27 | +# with: |
| 28 | +# version: ${{ inputs.version }} |
26 | 29 |
|
27 | | - go: |
28 | | - uses: ./.github/workflows/release-go-sdk.yml |
29 | | - secrets: inherit |
30 | | - with: |
31 | | - version: ${{ inputs.version }} |
| 30 | +# go: |
| 31 | +# uses: ./.github/workflows/release-go-sdk.yml |
| 32 | +# secrets: inherit |
| 33 | +# with: |
| 34 | +# version: ${{ inputs.version }} |
32 | 35 |
|
33 | | - java: |
34 | | - uses: ./.github/workflows/release-java-sdk.yml |
35 | | - secrets: inherit |
36 | | - with: |
37 | | - version: ${{ inputs.version }} |
| 36 | +# java: |
| 37 | +# uses: ./.github/workflows/release-java-sdk.yml |
| 38 | +# secrets: inherit |
| 39 | +# with: |
| 40 | +# version: ${{ inputs.version }} |
38 | 41 |
|
39 | | - python: |
40 | | - uses: ./.github/workflows/release-python-sdk.yml |
41 | | - secrets: inherit |
42 | | - with: |
43 | | - version: ${{ inputs.version }} |
| 42 | +# python: |
| 43 | +# uses: ./.github/workflows/release-python-sdk.yml |
| 44 | +# secrets: inherit |
| 45 | +# with: |
| 46 | +# version: ${{ inputs.version }} |
44 | 47 |
|
45 | | - ruby: |
46 | | - uses: ./.github/workflows/release-ruby-sdk.yml |
47 | | - secrets: inherit |
48 | | - with: |
49 | | - version: ${{ inputs.version }} |
| 48 | +# ruby: |
| 49 | +# uses: ./.github/workflows/release-ruby-sdk.yml |
| 50 | +# secrets: inherit |
| 51 | +# with: |
| 52 | +# version: ${{ inputs.version }} |
50 | 53 |
|
51 | | - ts: |
52 | | - uses: ./.github/workflows/release-ts-sdk.yml |
53 | | - secrets: inherit |
54 | | - with: |
55 | | - version: ${{ inputs.version }} |
| 54 | +# ts: |
| 55 | +# uses: ./.github/workflows/release-ts-sdk.yml |
| 56 | +# secrets: inherit |
| 57 | +# with: |
| 58 | +# version: ${{ inputs.version }} |
56 | 59 |
|
57 | | - generate-docs: |
58 | | - needs: [csharp, go, java, python, ruby, ts] |
59 | | - runs-on: ubuntu-latest |
60 | | - steps: |
61 | | - - uses: actions/checkout@v4 |
| 60 | +# generate-docs: |
| 61 | +# needs: [csharp, go, java, python, ruby, ts] |
| 62 | +# runs-on: ubuntu-latest |
| 63 | +# steps: |
| 64 | +# - uses: actions/checkout@v4 |
62 | 65 |
|
63 | | - - name: Setup Node.js |
64 | | - uses: actions/setup-node@v4 |
| 66 | +# - name: Setup Node.js |
| 67 | +# uses: actions/setup-node@v4 |
65 | 68 |
|
66 | | - - name: Install Fern |
67 | | - run: npm install -g fern-api |
| 69 | +# - name: Install Fern |
| 70 | +# run: npm install -g fern-api |
68 | 71 |
|
69 | | - - name: Generate Documentation |
70 | | - run: fern generate --docs |
71 | | - env: |
72 | | - FERN_TOKEN: ${{ secrets.FERN_TOKEN }} |
| 72 | +# - name: Generate Documentation |
| 73 | +# run: fern generate --docs |
| 74 | +# env: |
| 75 | +# FERN_TOKEN: ${{ secrets.FERN_TOKEN }} |
73 | 76 |
|
0 commit comments