We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 941be7b commit 7655347Copy full SHA for 7655347
2 files changed
.github/ISSUE_TEMPLATE/bug-report.yaml
@@ -28,8 +28,8 @@ body:
28
label: 'DevStream Version'
29
description: "To find out the version run: `dtm version`"
30
options:
31
- - < v0.10.0
32
- - v0.10.0
+ - < v0.10.3
+ - v0.10.3
33
- latest
34
validations:
35
required: true
hack/release/auto-release-darwin-arm64.sh
@@ -73,7 +73,7 @@ pip3 install awscli
73
aws s3 cp $plugin_dir $STORAGE_URL_WITH_TAG --recursive --acl public-read
74
75
# check if the number of plugins on s3 is correct
76
-local_plugin_nums=$(../../dtm list plugins |wc -l)
+local_plugin_nums=$(./dtm list plugins |wc -l)
77
((local_plugin_file_nums=local_plugin_nums*6))
78
s3_plugin_file_total_nums=$(aws s3 ls download.devstream.io/"$tag"/|awk '{print $NF}'|uniq|wc -l)
79
((s3_plugin_file_nums=s3_plugin_file_total_nums-3))
0 commit comments