Skip to content

Commit 7971ef1

Browse files
authored
Merge pull request #4 from Dashlane/feat/helm_release
feat: add new action to release helm chart on GHCR
2 parents d464f7f + 095c7b4 commit 7971ef1

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

.github/workflows/helm-release.yml

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

dashlane-audit-logs/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
replicaCount: 1
66

77
image:
8-
repository: sgravis/dcli-log-catcher
8+
repository: dashlane/audit-logs
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: "0.3"
11+
tag: "latest"
1212

1313
serviceAccount:
1414
# Specifies whether a service account should be created

0 commit comments

Comments
 (0)