diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 50423a44..30d847de 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,7 +30,7 @@ jobs: runs-on: macOS-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - name: 🏗️ Setup l-breez repository + - name: 🏗️ Check-out l-breez repository uses: actions/checkout@v4 with: path: 'lbreez' @@ -39,7 +39,7 @@ jobs: uses: actions/checkout@v4 with: repository: 'breez/breez-sdk-liquid' - ssh-key: ${{secrets.REPO_SSH_KEY}} + ssh-key: ${{ secrets.REPO_SSH_KEY }} path: 'breez-sdk-liquid' ref: ${{ inputs.liquid_sdk_ref }} diff --git a/.github/workflows/build-android.yml b/.github/workflows/build-android.yml index b4232f3d..08c5c58a 100644 --- a/.github/workflows/build-android.yml +++ b/.github/workflows/build-android.yml @@ -110,7 +110,7 @@ jobs: df -hI echo "::endgroup::" - - name: 🏗️ Setup l-breez repository + - name: 🏗️ Check-out l-breez repository uses: actions/checkout@v4 with: path: 'lbreez' @@ -309,7 +309,7 @@ jobs: name: Android-APK path: lbreez/build/app/outputs/flutter-apk/app-*.apk - - name: Remove Google Application Credentials file + - name: Cleanup Google Application Credentials if: success() || failure() run: | if [ -d "lbreez" ] && [ -f "lbreez/google-application-credentials.json" ]; then diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index 694bd027..3687c2ef 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -87,13 +87,13 @@ jobs: env: SCHEME: Runner BUILD_CONFIGURATION: Release - TESTFLIGHT_USERNAME: ${{secrets.TESTFLIGHT_USERNAME}} - TESTFLIGHT_PASSWORD: ${{secrets.TESTFLIGHT_PASSWORD}} + TESTFLIGHT_USERNAME: ${{ secrets.TESTFLIGHT_USERNAME }} + TESTFLIGHT_PASSWORD: ${{ secrets.TESTFLIGHT_PASSWORD }} IOS_VERSION_STRING: 0.1.0 - DISTRIBUTION_CERT: ${{secrets.DISTRIBUTION_CERT}} - P12_BASE64: ${{secrets.P12_BASE64}} - P12_PASSWORD: ${{secrets.P12_PASSWORD}} - GOOGLE_SERVICES_IOS: ${{secrets.GOOGLE_SERVICES_IOS}} + DISTRIBUTION_CERT: ${{ secrets.DISTRIBUTION_CERT }} + P12_BASE64: ${{ secrets.P12_BASE64 }} + P12_PASSWORD: ${{ secrets.P12_PASSWORD }} + GOOGLE_SERVICES_IOS: ${{ secrets.GOOGLE_SERVICES_IOS }} FIREBASE_PROJECT: breez-technology FIREBASE_ANDROID_PACKAGE_NAME: com.breez.liquid.l_breez FIREBASE_IOS_BUNDLE_ID: com.breez.liquid.lBreez @@ -119,7 +119,7 @@ jobs: df -hI echo "::endgroup::" - - name: 🏗️ Setup l-breez repository + - name: 🏗️ Check-out l-breez repository uses: actions/checkout@v4 with: path: 'lbreez' @@ -210,7 +210,7 @@ jobs: uses: actions/checkout@v4 with: repository: 'breez/breez-sdk-liquid' - ssh-key: ${{secrets.REPO_SSH_KEY}} + ssh-key: ${{ secrets.REPO_SSH_KEY }} path: 'breez-sdk-liquid' ref: ${{ needs.setup.outputs.liquid-sdk-ref }} @@ -241,7 +241,7 @@ jobs: - name: 🔒 Install SSH Key env: - SSH_PRIVATE_KEY: ${{secrets.REPO_SSH_KEY}} + SSH_PRIVATE_KEY: ${{ secrets.REPO_SSH_KEY }} run: | mkdir -p ~/.ssh echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa @@ -279,7 +279,7 @@ jobs: - name: ⚙️ Setup compile-time variables env: - CONFIG_FILE: ${{secrets.CONFIG_FILE}} + CONFIG_FILE: ${{ secrets.CONFIG_FILE }} run: echo "$CONFIG_FILE" > ./lbreez/config.json - name: 📝 Install the Provisioning Profile @@ -404,7 +404,7 @@ jobs: ipa="$PWD/lbreez/build-output/ios/l_breez.ipa" "$altool" --upload-app --type ios --file "$ipa" --username $TESTFLIGHT_USERNAME --password $TESTFLIGHT_PASSWORD - - name: Remove Google Application Credentials file + - name: Cleanup Google Application Credentials if: success() || failure() run: | if [ -d "lbreez" ] && [ -f "lbreez/google-application-credentials.json" ]; then