]> sigrok.org Git - sigrok-build.git/commitdiff
build.yml: Fix typo
authorSoeren Apel <redacted>
Tue, 13 Aug 2024 20:02:10 +0000 (22:02 +0200)
committerSoeren Apel <redacted>
Tue, 13 Aug 2024 20:02:10 +0000 (22:02 +0200)
.github/workflows/build.yml

index 91935eace17b80e9a055f3bee994aeadff2b5847..223f2c2653d7bec55573694a7718faa096b93b42 100644 (file)
@@ -541,7 +541,7 @@ jobs:
     name: Create continuous PulseView release and add artifacts to it
 
     if: |
-      (endsWith(github.repository, 'pulseview') || (endsWith(github.repository, 'sigrok-build')) &&
+      (endsWith(github.repository, 'pulseview') || endsWith(github.repository, 'sigrok-build')) &&
       ((github.event_name == 'push' && github.ref == 'refs/heads/master') ||
       (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master'))
 
@@ -580,7 +580,7 @@ jobs:
     name: Create continuous sigrok-cli release and add artifacts to it
 
     if: |
-      (endsWith(github.repository, 'sigrok-cli') || (endsWith(github.repository, 'sigrok-build')) &&
+      (endsWith(github.repository, 'sigrok-cli') || endsWith(github.repository, 'sigrok-build')) &&
       ((github.event_name == 'push' && github.ref == 'refs/heads/master') ||
       (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master'))