Skip to content

Commit

Permalink
💚 Fix GH Actions syntaxe
Browse files Browse the repository at this point in the history
  • Loading branch information
llaumgui committed Jan 3, 2024
1 parent 3ac81f6 commit 89808b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/devops.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# SonarCloud job
#
test_sonar:
if: github.event_name != 'pull_request'
if: ${{ github.event_name != 'pull_request' }}
needs: [
test_nodejs,
test_markdownlint
Expand All @@ -74,7 +74,7 @@ jobs:
# Build application
#
build:
if: github.ref == 'refs/heads/main' || ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ github.ref == 'refs/heads/main' }} || ${{ startsWith(github.ref, 'refs/tags/v') }}
needs: [
test_sonar
]
Expand Down

0 comments on commit 89808b3

Please sign in to comment.