Skip to content

Commit

Permalink
Fix signing package (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Oct 23, 2024
1 parent b0a6dce commit e26fe13
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@ jobs:
- name: Import GPG key
run: |
echo -e "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --dearmor --output keyring.gpg
echo -e "$GPG_PRIVATE_KEY" | gpg --batch --yes --import -
gpg --list-secret-keys
gpg --export > ~/.gnupg/pubring.gpg
gpg --export-secret-keys > ~/.gnupg/secring.gpg
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}

- name: Set up Helm
uses: azure/setup-helm@v4
Expand All @@ -50,6 +55,5 @@ jobs:
uses: helm/chart-releaser-action@v1
env:
CR_KEY: ${{ secrets.CR_KEY }}
CR_KEYRING: keyring.gpg
CR_SIGN: true
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 7 additions & 1 deletion charts/monica/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: monica
description: A Helm chart for Kubernetes to install Monica
type: application
version: 1.0.9
version: 1.0.10
appVersion: "5.0.0"
icon: https://raw.githubusercontent.com/monicahq/monica/aa98c09/public/img/favicon.svg
maintainers:
Expand Down Expand Up @@ -41,3 +41,9 @@ annotations:
artifacthub.io/signKey: |
fingerprint: AFE991E31648AE825AD37DDF932D00A7AEEA553D
url: https://monicahq.github.io/helm/public-key.asc
artifacthub.io/maintainers: |
- name: asbiin
email: [email protected]
artifacthub.io/screenshots: |
- title: Document your life
url: https://user-images.githubusercontent.com/61099/242266547-63d98bd9-35f3-4dfe-92f4-a4a8dd75aa5c.png
2 changes: 1 addition & 1 deletion charts/monica/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# monica

![Version: 1.0.9](https://img.shields.io/badge/Version-1.0.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.0.0](https://img.shields.io/badge/AppVersion-5.0.0-informational?style=flat-square)
![Version: 1.0.10](https://img.shields.io/badge/Version-1.0.10-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.0.0](https://img.shields.io/badge/AppVersion-5.0.0-informational?style=flat-square)

A Helm chart for Kubernetes to install Monica

Expand Down

0 comments on commit e26fe13

Please sign in to comment.