Skip to content

Commit

Permalink
Fix workflow issues
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple committed Nov 2, 2023
1 parent 34a81cb commit a5d9a88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/smoke-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
- uses: ./.github/actions/bootstrap
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand All @@ -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/[email protected]
- uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
end

0 comments on commit a5d9a88

Please sign in to comment.