Skip to content

Commit

Permalink
Merge branch 'develop' into ipad-webview-size
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaldan authored Sep 11, 2024
2 parents bf73baf + 0cd05cd commit be27cca
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
type: choice
description: 'Select version bump type:'
options:
- none
- patch
- minor
- major
Expand Down Expand Up @@ -41,6 +42,15 @@ jobs:
ssh-private-key: |
${{ secrets.MATCH_GIT_PRIVATE_KEY }}
- name: Set Fastlane Options
id: set_options
run: |
if [ "${{ github.event.inputs.bump_type }}" != "none" ]; then
echo "fastlane_options={ \"bump\": \"${{ github.event.inputs.bump_type }}\" }" >> $GITHUB_ENV
else
echo "fastlane_options={}" >> $GITHUB_ENV
fi
- name: Deploy on TestFlight
env:
OH_CROWDIN_PROJECT_ID: openhab-ios
Expand All @@ -59,5 +69,5 @@ jobs:
uses: maierj/[email protected]
with:
lane: beta
options: '{ "bump": "${{ github.event.inputs.bump_type }}" }'
options: ${{ steps.set_options.outputs.fastlane_options }}
skip-tracking: true

0 comments on commit be27cca

Please sign in to comment.