We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 111df5d + f7359ee commit cec41b9Copy full SHA for cec41b9
.github/workflows/dev-stg-release.yml
@@ -0,0 +1,21 @@
1
+name: Publish to the Ballerina Dev\Stage Central
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ environment:
7
+ type: choice
8
+ description: Select Environment
9
+ required: true
10
+ options:
11
+ - DEV CENTRAL
12
+ - STAGE CENTRAL
13
14
+jobs:
15
+ call_workflow:
16
+ name: Run Dev\Stage Central Publish Workflow
17
+ if: ${{ github.repository_owner == 'ballerina-platform' }}
18
+ uses: ballerina-platform/ballerina-library/.github/workflows/dev-stage-central-publish-connector-template.yml@main
19
+ secrets: inherit
20
+ with:
21
+ environment: ${{ github.event.inputs.environment }}
0 commit comments