-
Notifications
You must be signed in to change notification settings - Fork 11
55 lines (47 loc) · 1.31 KB
/
release-all.yml
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
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 }}