Skip to content

Commit cec41b9

Browse files
authored
Merge pull request #8 from ballerina-platform/initial-impl
Add dev and stage release workflow
2 parents 111df5d + f7359ee commit cec41b9

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)