Skip to content

Commit 89808b3

Browse files
committed
💚 Fix GH Actions syntaxe
1 parent 3ac81f6 commit 89808b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/devops.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
# SonarCloud job
5050
#
5151
test_sonar:
52-
if: github.event_name != 'pull_request'
52+
if: ${{ github.event_name != 'pull_request' }}
5353
needs: [
5454
test_nodejs,
5555
test_markdownlint
@@ -74,7 +74,7 @@ jobs:
7474
# Build application
7575
#
7676
build:
77-
if: github.ref == 'refs/heads/main' || ${{ startsWith(github.ref, 'refs/tags/v') }}
77+
if: ${{ github.ref == 'refs/heads/main' }} || ${{ startsWith(github.ref, 'refs/tags/v') }}
7878
needs: [
7979
test_sonar
8080
]

0 commit comments

Comments
 (0)