Skip to content

Commit

Permalink
Update beta-test-env.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jlantz authored Dec 4, 2023
1 parent 0c9abba commit 5b9793c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/beta-test-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
env-name:
required: true
type: string
debug:
required: false
default: false
type: boolean
secrets:
packaging-org-auth-url:
required: true
Expand Down Expand Up @@ -37,9 +41,9 @@ jobs:
- name: Auth to DevHub
run: /usr/local/bin/devhub.sh
- name: Deploy to Packaging Org
run: cci flow run ci_master --org packaging
run: cci flow run ci_master --org packaging $([[ "${{ inputs.debug }}" == "true" ]] && echo " --debug")
- name: Build Beta Package
run: cci flow run release_beta --org packaging
run: cci flow run release_beta --org packaging $([[ "${{ inputs.debug }}" == "true" ]] && echo " --debug")
shell: bash
- name: Run Beta Test
run: cci flow run ci_beta --org beta
Expand Down

0 comments on commit 5b9793c

Please sign in to comment.