You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ex...@apache.org on 2022/07/20 19:23:26 UTC

[nifi-site] branch main updated: NIFI-9802 Corrected build workflow conditionals

This is an automated email from the ASF dual-hosted git repository.

exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 7633f54  NIFI-9802 Corrected build workflow conditionals
7633f54 is described below

commit 7633f54b32e70d3d055748129e93f4d7771d1d13
Author: exceptionfactory <ex...@apache.org>
AuthorDate: Wed Jul 20 14:23:17 2022 -0500

    NIFI-9802 Corrected build workflow conditionals
---
 .github/workflows/build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 214b9fa..aaad7cf 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,13 +16,13 @@ jobs:
       - name: Checkout Sources
         uses: actions/checkout@v3
       - name: Checkout Staging
-        if: $github.ref_name == 'main-staging'
+        if: github.ref_name == 'main-staging'
         uses: actions/checkout@v3
         with:
           ref: asf-staging
           path: ${{ env.PUBLISH_DIRECTORY }}
       - name: Checkout Production
-        if: $github.ref_name == 'main'
+        if: github.ref_name == 'main'
         uses: actions/checkout@v3
         with:
           ref: asf-site