Skip to content

Commit aaab693

Browse files
committed
fixes meshery#8001
Signed-off-by: Lee Calcote <[email protected]>
1 parent 31608b3 commit aaab693

File tree

3 files changed

+30
-11
lines changed

3 files changed

+30
-11
lines changed

.github/workflows/build-and-release-stable.yml

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,27 +73,36 @@ jobs:
7373
env:
7474
COMMITTER_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
7575
call-dde-release-workflow:
76-
needs: ctlrelease
76+
needs:
77+
- build
78+
- ctlrelease
7779
name: Build and Release Docker Extension
7880
uses: meshery/meshery/.github/workflows/build-and-release-dde.yml@master
7981
secrets: inherit
8082
call-helm-chart-releaser:
81-
needs: build
83+
needs:
84+
- build
85+
- ctlrelease
8286
name: Release Helm Charts
8387
uses: meshery/meshery/.github/workflows/helm-chart-releaser.yml@master
8488
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
9094
email-meshery-release-notes-workflow:
91-
needs: build
95+
needs:
96+
- build
97+
- ctlrelease
9298
name: Email Meshery Release Notes
9399
uses: layer5labs/meshery-extensions-packages/.github/workflows/notify-email.yml@master
94-
secrets: inherit
100+
secrets:
101+
token: ${{ secrets.GH_ACCESS_TOKEN }}
95102
call-cncf-playground-rollout:
96-
needs: build
103+
needs:
104+
- build
105+
- ctlrelease
97106
name: Deploy CNCF Playground
98107
uses: meshery/meshery/.github/workflows/cncf-playground-deploy-meshery.yaml@master
99108
secrets: inherit

.github/workflows/email-test.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 }}

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ builds:
4646
archives:
4747
- id: stable
4848
name_template: >-
49-
{{ .ProjectName }}_{{.Tag}}_
49+
{{ .ProjectName }}_{{.Version}}_
5050
{{- title .Os }}_
5151
{{- if eq .Arch "amd64" }}x86_64
5252
{{- else if eq .Arch "386" }}i386

0 commit comments

Comments
 (0)