Skip to content

Commit

Permalink
💚 Ci: fix startup failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Mastersam07 committed Nov 8, 2024
1 parent 6c2d157 commit 52f3b07
Showing 1 changed file with 22 additions and 10 deletions.
32 changes: 22 additions & 10 deletions .github/workflows/conferenceapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}

0 comments on commit 52f3b07

Please sign in to comment.