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

Tagging release 0.7.6 #70

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Dependencies apt
run: |
apt update && \
apt-get install -y python3 python3-pip python3-setuptools git wget
apt-get install -y python3 python3-pip python3-setuptools git wget python3-yaml

- uses: actions/checkout@v2

Expand Down
4 changes: 2 additions & 2 deletions charts/vals-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ kubeVersion: ">= 1.19.0-0"
type: application

# Chart version
version: 0.7.6-beta1
version: 0.7.6

# Latest container tag
appVersion: v0.7.6-beta1
appVersion: v0.7.6

maintainers:
- email: info@digitalis.io
Expand Down
2 changes: 1 addition & 1 deletion charts/vals-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# vals-operator

![Version: 0.7.5](https://img.shields.io/badge/Version-0.7.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.7.5](https://img.shields.io/badge/AppVersion-v0.7.5-informational?style=flat-square)
![Version: 0.7.6](https://img.shields.io/badge/Version-0.7.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.7.6](https://img.shields.io/badge/AppVersion-v0.7.6-informational?style=flat-square)

This helm chart installs the Digitalis Vals Operator to manage and sync secrets from supported backends into Kubernetes.
## About Vals-Operator
Expand Down
5 changes: 3 additions & 2 deletions scripts/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ if [[ $versionNumber =~ ^[0-9]+\.[0-9]+ ]]; then
sed -i '' "s/version:.*/version: ${versionNumber}/g" charts/vals-operator/Chart.yaml
sed -i '' "s/appVersion:.*/appVersion: ${tag}/g" charts/vals-operator/Chart.yaml

git commit -S -am "Tagging version ${versionNumber}" && git push && \
git tag $tag && git push --tags
branch=$(git rev-parse --abbrev-ref HEAD)
git commit -S -am "Tagging version ${versionNumber}" && git push -u origin $branch && \
git tag $tag && git push --tags -u origin $branch
digiserg marked this conversation as resolved.
Show resolved Hide resolved
fi
Loading