File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 68
68
echo "::set-output name=release_version::$RELEASE_VERSION"
69
69
- name : Check out code into the Go module directory
70
70
uses : actions/checkout@v1
71
+ - name : Download ui tar
72
+ uses : actions/download-artifact@v2
73
+ with :
74
+ name : ui-tar
71
75
- name : install-upx
72
76
run : brew install upx
73
77
- name : Compile binaries
Original file line number Diff line number Diff line change @@ -2,11 +2,12 @@ package upgrade
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/loft-sh/devspace/pkg/devspace/env"
6
5
"os"
7
6
"regexp"
8
7
"sync"
9
8
9
+ "github.com/loft-sh/devspace/pkg/devspace/env"
10
+
10
11
"github.com/pkg/errors"
11
12
12
13
"github.com/loft-sh/devspace/pkg/util/log"
@@ -20,7 +21,7 @@ var version string
20
21
var rawVersion string
21
22
22
23
var githubSlug = "ankorstore/devspace"
23
- var reVersion = regexp .MustCompile (`\d+\.\d+\.\d+-aks.\d` )
24
+ var reVersion = regexp .MustCompile (`\d+\.\d+\.\d+( -aks.\d)? ` )
24
25
25
26
func eraseVersionPrefix (version string ) (string , error ) {
26
27
indices := reVersion .FindStringIndex (version )
You can’t perform that action at this time.
0 commit comments