Skip to content

Commit

Permalink
fix(github): Prod image high cpu load due to deadlock detection
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Jun 29, 2023
1 parent aa49a69 commit 1314edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
inputs:
tag:
type: string
description: 'Docker tag'
description: "Docker tag"
required: false
release:
types:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
with:
result-encoding: string
script: |
if (github.ref_type == 'tag' && !contains(github.ref_name,'-dev')) {
if ('${{ github.ref_type }}' == 'tag' && ! '${{ github.ref_name }}'.includes('-dev')) {
return 'tenderdash,stable'
}
return 'tenderdash,dev,deadlock'
Expand Down

0 comments on commit 1314edd

Please sign in to comment.