Skip to content

Commit 1f9d96b

Browse files
committed
add release action
1 parent 32bfcf3 commit 1f9d96b

File tree

2 files changed

+41
-14
lines changed

2 files changed

+41
-14
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release Charts
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
release:
10+
permissions:
11+
contents: write
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
19+
- name: Configure Git
20+
run: |
21+
git config user.name "$GITHUB_ACTOR"
22+
git config user.email "[email protected]"
23+
24+
- name: Run chart-releaser
25+
uses: helm/[email protected]
26+
env:
27+
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

README.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
<!--
2-
SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
3-
SPDX-License-Identifier: Apache-2.0
4-
-->
5-
# NGINX S3 Caching Gateway Helm Chart
1+
<!-- SPDX-FileCopyrightText: 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH SPDX-License-Identifier: Apache-2.0 -->
62

7-
A Helm chart for deploying NGINX S3 Caching Gateway.
3+
## Usage
84

9-
## Prerequisites
5+
[Helm](https://helm.sh) must be installed to use the charts. Please refer to
6+
Helm's [documentation](https://helm.sh/docs) to get started.
107

11-
Before you begin, ensure you have met the following requirements:
8+
Once Helm has been set up correctly, add the repo as follows:
129

13-
- Kubernetes 1.21+
14-
- Helm 3.0.0+
10+
helm repo add denkhaus https://denkhaus.github.io/helm-charts
1511

16-
## License
12+
If you had already added this repo earlier, run `helm repo update` to retrieve
13+
the latest versions of the packages. You can then run `helm search repo
14+
denkhaus` to see the charts.
1715

18-
This project uses the following license: Apache-2.0
16+
To install the nginx-s3-gateway chart:
1917

20-
## Copyright
18+
helm install my-nginx-s3-gateway denkhaus/nginx-s3-gateway
2119

22-
Copyright © 2024 Zentrum für Digitale Souveränität der Öffentlichen Verwaltung (ZenDiS) GmbH
20+
To uninstall the chart:
21+
22+
helm delete my-nginx-s3-gateway

0 commit comments

Comments
 (0)