From: Soeren Apel Date: Tue, 13 Aug 2024 20:00:42 +0000 (+0200) Subject: build.yml Add sigrok-build as valid workflow condition X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=c85ee2de4e3a6cac573f6bdac55c845fa71a6de4;p=sigrok-build.git build.yml Add sigrok-build as valid workflow condition --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a615020..91935ea 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, '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-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'))