Skip to content

Commit

Permalink
Merge pull request #124 from dirsigler/dev
Browse files Browse the repository at this point in the history
(feat): deactivate GPG signing and bump image version
  • Loading branch information
dirsigler committed Aug 28, 2023
2 parents 6c8cdd5 + 8e869dd commit 3767f3e
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/configs/cr.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sign: true
sign: false
key: Dennis Irsigler
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fi
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml --target-branch main
run: ct lint --config ".github/configs/ct.yaml" --target-branch main

- name: Create kind ${{ matrix.k8s }} cluster
uses: helm/kind-action@v1.8.0
Expand All @@ -52,4 +52,4 @@ jobs:
node_image: kindest/node:${{ matrix.k8s }}

- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml --target-branch main
run: ct install --config ".github/configs/ct.yaml" --target-branch main
18 changes: 9 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ jobs:
with:
version: v3.4.0

- name: Prepare GPG Key
run: |
base64 -d <<< "$GPG_KEYRING_BASE64" > $HOME/secring.gpg
echo "$GPG_PASSPHRASE" > $HOME/passphrase.txt
# - name: Prepare GPG Key
# run: |
# base64 -d <<< "$GPG_KEYRING_BASE64" > $HOME/secring.gpg
# echo "$GPG_PASSPHRASE" > $HOME/passphrase.txt

echo "CR_KEYRING=$HOME/secring.gpg >> "$GITHUB_ENV"
echo "CR_PASSPHRASE_FILE=$HOME/passphrase.txt" >> "$GITHUB_ENV"
env:
GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}"
GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE}}"
# echo "CR_KEYRING=$HOME/secring.gpg >> "$GITHUB_ENV"
# echo "CR_PASSPHRASE_FILE=$HOME/passphrase.txt" >> "$GITHUB_ENV"
# env:
# GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}"
# GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE}}"

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
Expand Down
4 changes: 2 additions & 2 deletions charts/uptime-kuma/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "1.23.0"
appVersion: "1.23.1"
deprecated: false
description: A self-hosted Monitoring tool like "Uptime-Robot".
home: https://github.com/dirsigler/uptime-kuma-helm
Expand All @@ -11,4 +11,4 @@ name: uptime-kuma
sources:
- https://github.com/louislam/uptime-kuma
type: application
version: 2.11.2
version: 2.12.2
4 changes: 2 additions & 2 deletions charts/uptime-kuma/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uptime-kuma

![Version: 2.11.2](https://img.shields.io/badge/Version-2.11.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.0](https://img.shields.io/badge/AppVersion-1.23.0-informational?style=flat-square)
![Version: 2.12.2](https://img.shields.io/badge/Version-2.12.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.1](https://img.shields.io/badge/AppVersion-1.23.1-informational?style=flat-square)

A self-hosted Monitoring tool like "Uptime-Robot".

Expand All @@ -26,7 +26,7 @@ A self-hosted Monitoring tool like "Uptime-Robot".
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"louislam/uptime-kuma"` | |
| image.tag | string | `"1.23.0-debian"` | |
| image.tag | string | `"1.23.1-debian"` | |
| imagePullSecrets | list | `[]` | |
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-read-timeout" | string | `"3600"` | |
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-send-timeout" | string | `"3600"` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/uptime-kuma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
repository: louislam/uptime-kuma
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "1.23.0-debian"
tag: "1.23.1-debian"

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit 3767f3e

Please sign in to comment.