Skip to content

Commit

Permalink
Same version scheme for cron-job and onechart
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlocph committed Oct 21, 2021
1 parent ad2ea45 commit 530070b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
run: |
echo "$TAG_VERSION"
echo "$CHART_VERSION"
echo "CRON_JOB_CHART_VERSION"
echo "$CRON_JOB_CHART_VERSION"
if [ "$TAG_VERSION" != "$CHART_VERSION" ]
then
echo "Tag version does not match chart version"
exit 1
fi
if [ "$TAG_VERSION" != "CRON_JOB_CHART_VERSION" ]
if [ "$TAG_VERSION" != "$CRON_JOB_CHART_VERSION" ]
then
echo "Tag version does not match cron-job chart version"
exit 1
Expand Down

0 comments on commit 530070b

Please sign in to comment.