From 733ed417d7e98836143ef88c942ff6f869375777 Mon Sep 17 00:00:00 2001 From: vcaldaralo Date: Thu, 9 Jan 2025 18:36:08 +0100 Subject: [PATCH] fetch_all_tags to bump_version --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index ab201a8..2bf790f 100644 --- a/action.yml +++ b/action.yml @@ -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/action-helm-pusher@v0.0.10