From a5d9a88a1b3c7c98023e24171829395e51b82b08 Mon Sep 17 00:00:00 2001 From: Alexey Alter-Pesotskiy Date: Thu, 2 Nov 2023 18:06:39 +0000 Subject: [PATCH] Fix workflow issues --- .github/workflows/smoke-checks.yml | 8 ++++---- fastlane/Fastfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/smoke-checks.yml b/.github/workflows/smoke-checks.yml index 0823efd6..2b9e8c41 100644 --- a/.github/workflows/smoke-checks.yml +++ b/.github/workflows/smoke-checks.yml @@ -29,7 +29,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_PR_NUM: ${{ github.event.number }} - if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' + if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} steps: - uses: actions/checkout@v3.1.0 - uses: ./.github/actions/bootstrap @@ -116,7 +116,7 @@ jobs: test-e2e-debug: name: Test E2E UI (Debug) runs-on: macos-13 - if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' + if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} needs: - allure_testops_launch - build-test-app-and-frameworks @@ -171,7 +171,7 @@ jobs: allure_testops_launch: name: Launch Allure TestOps runs-on: macos-13 - if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' + if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} outputs: launch_id: ${{ steps.get_launch_id.outputs.launch_id }} steps: @@ -191,7 +191,7 @@ jobs: name: Build Demo App runs-on: macos-13 needs: build-test-app-and-frameworks - if: ${{ github.event_name != 'push' }} && github.event.inputs.snapshots != 'true' + if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} steps: - uses: actions/checkout@v3.1.0 - uses: actions/download-artifact@v3 diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 3b8a0616..744eafa0 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -410,4 +410,4 @@ def select_files_from(files:, with_extension:, that_start_with:) end.select do |f| f.gsub(/['"]/, '').end_with?(with_extension) end -end \ No newline at end of file +end