You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2024/04/10 11:31:42 UTC

(logging-parent) branch main updated: Fix Bash typo in `deploy-site-reusable.yaml`

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

vy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-parent.git


The following commit(s) were added to refs/heads/main by this push:
     new 1313030  Fix Bash typo in `deploy-site-reusable.yaml`
1313030 is described below

commit 1313030ddfd27183f0fcb6cd0b3a05ef5c4562c7
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Wed Apr 10 13:31:33 2024 +0200

    Fix Bash typo in `deploy-site-reusable.yaml`
---
 .github/workflows/deploy-site-reusable.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/deploy-site-reusable.yaml b/.github/workflows/deploy-site-reusable.yaml
index 8e5e802..16f8db7 100644
--- a/.github/workflows/deploy-site-reusable.yaml
+++ b/.github/workflows/deploy-site-reusable.yaml
@@ -50,7 +50,7 @@ on:
 
 jobs:
 
-  deploy-site:
+  deploy:
 
     runs-on: ubuntu-latest
 
@@ -126,7 +126,7 @@ jobs:
         run: |
 
           # Clean up the target path
-          if [ "." -eq "$TARGET_PATH" ]; then
+          if [ "." = "$TARGET_PATH" ]; then
             git ls-files -z | xargs -0 git rm -rf
           else
             git rm -rf "$TARGET_PATH"