Skip to content

Commit

Permalink
Merge pull request #9 from cdwv/feature/release-build
Browse files Browse the repository at this point in the history
Automatically create new releases and push them to gh-pages
  • Loading branch information
andrzejwp authored Sep 15, 2020
2 parents 30d6401 + 07881f0 commit ca28752
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Charts

on:
push:
branches:
- master

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: chart
env:
CR_TOKEN: "${{ secrets.CR_TOKEN }}"

11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@ Helm chart for deploying [dani-garcia/bitwarden_rs](https://github.com/dani-garc

## TL;DR;

```console
$ helm repo add bitwarden https://cdwv.github.io/bitwarden-k8s/
$ helm install bitwarden/bitwarden-k8s
```

OR

```console
$ git clone https://github.com/cdwv/bitwarden-k8s
$ cd bitwarden-k8s
$ helm install .
$ helm install ./chart/bitwarden-k8s
```


Expand All @@ -15,7 +22,7 @@ $ helm install .
To install the chart with the release name `my-release`:

```console
$ helm install --name my-release .
$ helm install --name my-release bitwarden/bitwarden-k8s
```

## Uninstalling the Chart
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ca28752

Please sign in to comment.