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