Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INSTALL-4193 expose upstream custom_tag variable #61

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ inputs:
gcloud_project:
description: "name of the gcloud project id, which the artifact registry is part of."
required: false

custom_tag:
description: "Expose abillity to push a custom tag. This overrides any automatic bump settings. Use with caution"
required: false

runs:
using: "composite"
Expand All @@ -72,11 +74,12 @@ runs:

- name: bump version
id: bump_version
uses: mathieudutour/github-tag-action@v5.6
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ inputs.github_token }}
tag_prefix: helm/${{ steps.chart_name.outputs.result }}-
dry_run: ${{ inputs.dry_run }}
custom_tag: ${{ inputs.custom_tag }}

- name: "publish helm chart to Artifactory"
uses: draios/[email protected]
Expand Down
Loading