From 52f3b0700839ddcbdf856e58c16c24e2b927e8fc Mon Sep 17 00:00:00 2001 From: Codefarmer Date: Fri, 8 Nov 2024 09:41:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Ci:=20fix=20startup=20failure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/conferenceapp.yaml | 32 +++++++++++++++++++--------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/.github/workflows/conferenceapp.yaml b/.github/workflows/conferenceapp.yaml index 6a39e85..b1ee694 100644 --- a/.github/workflows/conferenceapp.yaml +++ b/.github/workflows/conferenceapp.yaml @@ -36,6 +36,18 @@ env: SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }} jobs: + + debug: + runs-on: ubuntu-latest + steps: + - name: Print Inputs + run: | + echo "Event Name: ${{ github.event_name }}" + echo "Release Type: ${{ github.event.inputs['release-type'] }}" + echo "Changelog: ${{ github.event.inputs['changelog'] }}" + echo "Build Version: ${{ github.event.inputs['build-version'] }}" + echo "Build Number: ${{ github.event.inputs['build-number'] }}" + check-formatting: if: github.event_name == 'pull_request' uses: ./.github/workflows/shared-workflow.yaml @@ -48,9 +60,9 @@ jobs: with: package-name: conferenceapp android-build: ${{ github.event.inputs['release-type'] == 'build' }} - changelog: ${{ github.event.inputs.changelog }} - build-number: ${{ github.event.inputs.build-number }} - build-version: ${{ github.event.inputs.build-version }} + changelog: ${{ github.event.inputs['changelog'] }} + build-number: ${{ github.event.inputs['build-number'] }} + build-version: ${{ github.event.inputs['build-version'] }} secrets: CREDENTIAL_FILE_CONTENT: ${{ secrets.CREDENTIAL_FILE_CONTENT }} FIREBASE_APP_ID: ${{ secrets.FIREBASE_APP_ID }} @@ -60,10 +72,10 @@ jobs: uses: ./.github/workflows/shared-workflow.yaml with: package-name: conferenceapp - ios-build: ${{ github.event.inputs.release-type == 'build' }} - changelog: ${{ github.event.inputs.changelog }} - build-number: ${{ github.event.inputs.build-number }} - build-version: ${{ github.event.inputs.build-version }} + ios-build: ${{ github.event.inputs['release-type ']== 'build' }} + changelog: ${{ github.event.inputs['changelog'] }} + build-number: ${{ github.event.inputs['build-number'] }} + build-version: ${{ github.event.inputs['build-version'] }} secrets: APP_STORE_CONNECT_ISSUER_ID: ${{ vars.APP_STORE_CONNECT_ISSUER_ID }} APP_STORE_CONNECT_KEY_IDENTIFIER: ${{ vars.APP_STORE_CONNECT_KEY_IDENTIFIER }} @@ -77,8 +89,8 @@ jobs: uses: ./.github/workflows/shared-workflow.yaml with: package-name: conferenceapp - changelog: ${{ github.event.inputs.changelog }} - build-version: ${{ github.event.inputs.build-version }} - build-number: ${{ github.event.inputs.build-number }} + changelog: ${{ github.event.inputs['changelog'] }} + build-version: ${{ github.event.inputs['build-version'] }} + build-number: ${{ github.event.inputs['build-number'] }} secrets: SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }}