Skip to content

Commit

Permalink
Add support for passing release name
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz committed Sep 25, 2024
1 parent 17494f7 commit c7efed7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-1gp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Production Release

on:
workflow_call:
inputs:
release-name:
required: false
type: string
secrets:
dev-hub-auth-url:
required: true
Expand Down Expand Up @@ -34,7 +38,7 @@ jobs:
- name: Deploy to Packaging Org
run: cci flow run ci_master --org packaging
- name: Build Production Package
run: cci flow run release_production --org packaging
run: cci flow run release_production --org packaging $([[ "${{ inputs.release-name }}" ]] && echo " --options upload_production__name${{ inputs.release-name }}")
shell: bash
- name: Run Beta Test
run: cci flow run ci_release --org release
Expand Down

0 comments on commit c7efed7

Please sign in to comment.