File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 push :
44 tags :
55 - ' v*'
6+ workflow_dispatch :
7+ inputs :
8+ release_web :
9+ type : boolean
10+ description : Release web packages
11+ default : true
12+ release_csharp :
13+ type : boolean
14+ description : Release C# packages
15+ default : true
16+ release_kotlin_android :
17+ type : boolean
18+ description : Release Android packages
19+ default : true
620
721jobs :
822 release_web :
923 name : Web
1024 runs-on : ubuntu-latest
25+ if : (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_web == 'true')
1126 steps :
1227 - uses : actions/checkout@v6
1328 with :
5974 release_csharp :
6075 name : C#
6176 runs-on : ubuntu-latest
77+ if : (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_csharp == 'true')
6278 steps :
6379 - uses : actions/checkout@v6
6480 with :
8298 release_kotlin_android :
8399 name : Kotlin (Android)
84100 runs-on : windows-latest
101+ if : (github.event_name == 'push') || (github.event_name == 'workflow_dispatch' && github.event.inputs.release_kotlin_android == 'true')
85102 env :
86103 ORG_GRADLE_PROJECT_mavenCentralUsername : ${{secrets.OSSRH_USERTOKEN_USERNAME}}
87104 ORG_GRADLE_PROJECT_mavenCentralPassword : ${{secrets.OSSRH_USERTOKEN_PASSWORD}}
You can’t perform that action at this time.
0 commit comments