modified publish workflow for testing

This commit is contained in:
gitclonebrian 2025-11-25 12:37:56 -05:00
parent 8bdbccd8de
commit 9736d8532e

View File

@ -44,8 +44,7 @@ on:
description: "Track to promote to."
type: choice
options:
- production
- Fastlane Automation Target
- Unused
required: true
dry-run:
description: "Dry-Run, Run the workflow without publishing to the store"
@ -166,17 +165,3 @@ jobs:
releaseNotes:"$RELEASE_NOTES" \
track:"$TRACK_FROM" \
trackPromoteTo:"$TRACK_TARGET"
- name: Enable Publish Github Release Workflow
env:
PRODUCT: ${{ inputs.product }}
run: |
if ${{ inputs.dry-run }} ; then
gh workflow view publish-github-release-bwpm.yml
exit 0
fi
if [ "$PRODUCT" = "Password Manager" ]; then
gh workflow enable publish-github-release-bwpm.yml
elif [ "$PRODUCT" = "Authenticator" ]; then
gh workflow enable publish-github-release-bwa.yml
fi