File tree 3 files changed +30
-11
lines changed 3 files changed +30
-11
lines changed Original file line number Diff line number Diff line change @@ -73,27 +73,36 @@ jobs:
73
73
env :
74
74
COMMITTER_TOKEN : ${{ secrets.GH_ACCESS_TOKEN }}
75
75
call-dde-release-workflow :
76
- needs : ctlrelease
76
+ needs :
77
+ - build
78
+ - ctlrelease
77
79
name : Build and Release Docker Extension
78
80
uses : meshery/meshery/.github/workflows/build-and-release-dde.yml@master
79
81
secrets : inherit
80
82
call-helm-chart-releaser :
81
- needs : build
83
+ needs :
84
+ - build
85
+ - ctlrelease
82
86
name : Release Helm Charts
83
87
uses : meshery/meshery/.github/workflows/helm-chart-releaser.yml@master
84
88
secrets : inherit
85
- call-aks-playground-deploy-workflow :
86
- needs : build
87
- name : Deploy Meshery Playground
88
- uses : meshery/meshery/.github/workflows/deploy-meshery-playground.yml@master
89
- secrets : inherit
89
+ # call-aks-playground-deploy-workflow:
90
+ # needs: build
91
+ # name: Deploy Meshery Playground
92
+ # uses: meshery/meshery/.github/workflows/deploy-meshery-playground.yml@master
93
+ # secrets: inherit
90
94
email-meshery-release-notes-workflow :
91
- needs : build
95
+ needs :
96
+ - build
97
+ - ctlrelease
92
98
name : Email Meshery Release Notes
93
99
uses : layer5labs/meshery-extensions-packages/.github/workflows/notify-email.yml@master
94
- secrets : inherit
100
+ secrets :
101
+ token : ${{ secrets.GH_ACCESS_TOKEN }}
95
102
call-cncf-playground-rollout :
96
- needs : build
103
+ needs :
104
+ - build
105
+ - ctlrelease
97
106
name : Deploy CNCF Playground
98
107
uses : meshery/meshery/.github/workflows/cncf-playground-deploy-meshery.yaml@master
99
108
secrets : inherit
Original file line number Diff line number Diff line change
1
+ name : Meshery Build and Releaser (stable)
2
+ on :
3
+ workflow_dispatch :
4
+
5
+ jobs :
6
+ email-meshery-release-notes-workflow :
7
+ name : Email Meshery Release Notes
8
+ uses : layer5labs/meshery-extensions-packages/.github/workflows/notify-email.yml@master
9
+ secrets :
10
+ token : ${{ secrets.GH_ACCESS_TOKEN }}
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ builds:
46
46
archives :
47
47
- id : stable
48
48
name_template : >-
49
- {{ .ProjectName }}_{{.Tag }}_
49
+ {{ .ProjectName }}_{{.Version }}_
50
50
{{- title .Os }}_
51
51
{{- if eq .Arch "amd64" }}x86_64
52
52
{{- else if eq .Arch "386" }}i386
You can’t perform that action at this time.
0 commit comments