Skip to content

Commit

Permalink
Create releaseBundle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed May 29, 2024
1 parent 3efc726 commit 1c75c21
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/releaseBundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: publish apex-node-bundle
on:
workflow_run:
workflows:
- manual release
types:
- completed

workflow_dispatch:
inputs:
branch:
description: 'Set the branch to use for release'
type: string
required: false
default: 'main'

jobs:
call-release-workflow:
if: ${{ inputs.branch || github.event_name == 'workflow_run' }}
uses: CristiCanizales/bundle-publish-scripts/.github/workflows/releaseWithCoreBundle.yml@main
secrets: inherit
with:
branch: ${{ inputs.branch || 'main'}}

0 comments on commit 1c75c21

Please sign in to comment.