Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-domain-to-trusted-issuer
Browse files Browse the repository at this point in the history
  • Loading branch information
f11h authored May 31, 2024
2 parents 6c2633a + 864de2b commit eeee16c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/helm-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release Charts

on:
release:
types:
- created
workflow_dispatch: # This allows the workflow to be triggered manually

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- 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: "k8s/charts" # Specify the path to your charts directory
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,8 @@
<dependency>
<groupId>eu.europa.ec.dgc</groupId>
<artifactId>ddcc-gateway-lib</artifactId>
<version>2.0.1</version>
<version>2.0.2</version>
</dependency>

<!-- Spring Boot Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit eeee16c

Please sign in to comment.