From: Soeren Apel Date: Tue, 13 Aug 2024 20:02:10 +0000 (+0200) Subject: build.yml: Fix typo X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=5b23122ba64eb949f75c9c48966830f4b7e173bf;p=sigrok-build.git build.yml: Fix typo --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91935ea..223f2c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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'))