Skip to content

Commit

Permalink
fix conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
StuartHarris committed Oct 25, 2023
1 parent d0af207 commit ebfe6af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest

if: |
github.event_name != 'pull_request' ||
${{ github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
github.event.pull_request.base.repo.full_name }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -66,9 +66,9 @@ jobs:
find-examples:
runs-on: ubuntu-latest
if: |
github.event_name != 'pull_request' ||
${{ github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
github.event.pull_request.base.repo.full_name }}
outputs:
examples: ${{ steps.find.outputs.examples }}
steps:
Expand All @@ -83,9 +83,9 @@ jobs:
container: ivangabriele/tauri:debian-bookworm-18

if: |
github.event_name != 'pull_request' ||
${{ github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name !=
github.event.pull_request.base.repo.full_name
github.event.pull_request.base.repo.full_name }}
needs: find-examples

Expand Down

0 comments on commit ebfe6af

Please sign in to comment.