From 2e05c531c47bf52a9ccad052a22256ec1d44379e Mon Sep 17 00:00:00 2001 From: MoChilia Date: Tue, 9 Apr 2024 16:17:06 +0800 Subject: [PATCH] fix syntax error --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 6b07e86c..445408d8 100644 --- a/action.yml +++ b/action.yml @@ -40,7 +40,7 @@ branding: runs: using: 'node20' pre: 'lib/cleanup/index.js' - pre-if: ${{ ! startsWith( runner.name, 'GitHub Actions' ) }} + pre-if: (! startsWith(runner.name, 'GitHub Actions')) main: 'lib/main/index.js' post: 'lib/cleanup/index.js' - post-if: ${{ ! startsWith( runner.name, 'GitHub Actions' ) }} + post-if: (! startsWith(runner.name, 'GitHub Actions'))