-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fetch_all_tags to bump_version (#71)
- Loading branch information
1 parent
dbb0f5a
commit c7c1cdc
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,10 @@ inputs: | |
gcloud_project: | ||
description: "name of the gcloud project id, which the artifact registry is part of." | ||
required: false | ||
fetch_all_tags: | ||
description: "Boolean to fetch all tags for a repo (if false, only the last 100 will be fetched)." | ||
required: false | ||
default: "false" | ||
|
||
outputs: | ||
helm_chart_new_version: | ||
|
@@ -81,6 +85,7 @@ runs: | |
github_token: ${{ inputs.github_token }} | ||
tag_prefix: helm/${{ steps.chart_name.outputs.result }}- | ||
dry_run: ${{ inputs.dry_run }} | ||
fetch_all_tags: ${{ inputs.fetch_all_tags }} | ||
|
||
- name: "publish helm chart to Artifactory" | ||
uses: draios/[email protected] | ||
|