Skip to content

Commit

Permalink
Revert "Add 'none' option to version bumping. This avoids long Testfl…
Browse files Browse the repository at this point in the history
…ight rev…" (#812)

This reverts commit 0cd05cd.
  • Loading branch information
digitaldan authored Sep 11, 2024
1 parent 8c8025f commit b662b32
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
type: choice
description: 'Select version bump type:'
options:
- none
- patch
- minor
- major
Expand Down Expand Up @@ -42,15 +41,6 @@ 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 @@ -69,5 +59,5 @@ jobs:
uses: maierj/[email protected]
with:
lane: beta
options: ${{ steps.set_options.outputs.fastlane_options }}
options: '{ "bump": "${{ github.event.inputs.bump_type }}" }'
skip-tracking: true

0 comments on commit b662b32

Please sign in to comment.