From b662b3224a2d4d3430da650764549882779a9839 Mon Sep 17 00:00:00 2001 From: Dan Cunningham Date: Wed, 11 Sep 2024 13:52:09 -0700 Subject: [PATCH] =?UTF-8?q?Revert=20"Add=20'none'=20option=20to=20version?= =?UTF-8?q?=20bumping.=20This=20avoids=20long=20Testflight=20rev=E2=80=A6"?= =?UTF-8?q?=20(#812)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0cd05cd433877eba4b74d820aaf21914aaf0f132. --- .github/workflows/publish.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ec4a96ed..1c0d720f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,6 @@ on: type: choice description: 'Select version bump type:' options: - - none - patch - minor - major @@ -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 @@ -69,5 +59,5 @@ jobs: uses: maierj/fastlane-action@v3.1.0 with: lane: beta - options: ${{ steps.set_options.outputs.fastlane_options }} + options: '{ "bump": "${{ github.event.inputs.bump_type }}" }' skip-tracking: true