Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Take prerelease containing numbers into account
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddeco committed Aug 14, 2019
1 parent 66d6bf2 commit afa907d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- deploy:
name: Maybe push release image and upload binaries
command: |
if echo "${CIRCLE_TAG}" | grep -Eq "^[0-9]+(\.[0-9]+)*(-[a-z]+)?$"; then
if echo "${CIRCLE_TAG}" | grep -Eq "^[0-9]+(\.[0-9]+)*(-[a-z0-9]+)?$"; then
go get github.com/weaveworks/github-release
make release-bins
bin/upload-binaries
Expand All @@ -163,7 +163,7 @@ workflows:
- build:
filters:
tags:
only: /(helm-)?[0-9]+(\.[0-9]+)*(-[a-z]+)?/
only: /(helm-)?[0-9]+(\.[0-9]+)*(-[a-z0-9]+)?/

release-helm:
jobs:
Expand Down

0 comments on commit afa907d

Please sign in to comment.