Skip to content

Commit 3cd58c3

Browse files
committed
set VERSION var by default
1 parent 694b71a commit 3cd58c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

applications/wg-easy/Taskfile.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ tasks:
133133
# Find all charts and update their dependencies
134134
for chart_dir in $(find . -maxdepth 2 -name "Chart.yaml" | xargs dirname); do
135135
echo "Updating dependency $chart_dir"
136-
helm dependency update "$chart_dir"
136+
helm dependency update --skip-refresh "$chart_dir"
137137
done
138138
- echo "All dependencies updated!"
139139

@@ -283,8 +283,10 @@ tasks:
283283
release-create:
284284
desc: Create and promote a release using the Replicated CLI
285285
silent: false
286+
run: once
286287
vars:
287288
CHANNEL: '{{.CHANNEL | default "Unstable"}}'
289+
VERSION: '{{.VERSION | default "0.0.1"}}'
288290
RELEASE_NOTES: '{{.RELEASE_NOTES | default "Release created via task release-create"}}'
289291
requires:
290292
vars: [APP_SLUG, VERSION]

0 commit comments

Comments
 (0)