Skip to content

Commit

Permalink
Merge pull request #32 from manics/chartpress-prefix-githash
Browse files Browse the repository at this point in the history
Prefix commit with `h`
  • Loading branch information
manics authored Oct 27, 2021
2 parents e214f00 + 5f53725 commit ac4696b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
repos:
- repo: https://github.com/ambv/black
rev: 20.8b1
- repo: https://github.com/psf/black
rev: 21.9b0
hooks:
- id: black
args: [--target-version=py36]
- repo: https://github.com/lovesegfault/beautysh
rev: 6.0.1
rev: v6.2.1
hooks:
- id: beautysh
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.10
rev: v0.1.17
hooks:
- id: helmlint
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.2.0
rev: v2.4.1
hooks:
- id: prettier
2 changes: 1 addition & 1 deletion ci/chartpress.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def build_chart(name, version=None, paths=None, reset=False, release=False):
elif release:
version = chart["version"]
else:
version = chart["version"].split("-")[0] + "-" + commit
version = chart["version"].split("-")[0] + "-h" + commit

chart["version"] = version

Expand Down

0 comments on commit ac4696b

Please sign in to comment.