Skip to content

Commit

Permalink
chore(ci): fix bash condition to publish chart versions (#17321) (#17442
Browse files Browse the repository at this point in the history
)

Co-authored-by: Thomas Belin <thomasbelin4@gmail.com>
  • Loading branch information
V-Gira and atomrc authored May 22, 2024
1 parent 2782474 commit dc3e49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
helm repo add charts-webapp s3://public.wire.com/charts-webapp
if [ "${{github.ref}}" =~ "/refs/tags" ]; then
if [[ "${{github.ref}}" =~ "/refs/tags" ]]; then
chart_version="$(./bin/chart-next-version.sh release)"
else
chart_version="$(./bin/chart-next-version.sh prerelease)"
Expand Down

0 comments on commit dc3e49f

Please sign in to comment.