Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
MoChilia committed Apr 9, 2024
1 parent 2d52a1a commit 2e05c53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'))

0 comments on commit 2e05c53

Please sign in to comment.