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

Build: take prerelease containing numbers into account #2361

Merged
merged 1 commit into from
Aug 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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