Skip to content

Commit

Permalink
Merge pull request #8 from dunefro/helm-actions
Browse files Browse the repository at this point in the history
Added helm actions
  • Loading branch information
dunefro authored Nov 10, 2022
2 parents 0ed8401 + 4b67c28 commit 0c5d91a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Docker Image CI

on:
release:
type: [released]
type: [published, created]
jobs:

build:
build-and-deploy:

runs-on: ubuntu-latest

Expand All @@ -16,7 +16,7 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
- name: Build and push docker image
uses: docker/build-push-action@v3
with:
context: .
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/helm-chart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: release-chart
on:
push:
tags: 'chart-*'

jobs:
release-chart:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish Helm chart
uses: stefanprodan/[email protected]
with:
token: ${{ secrets.HELM_PACKAGE_TOKEN }}
charts_dir: charts
owner: dunefro
branch: gh-pages
commit_username: dunefro
commit_email: [email protected]

0 comments on commit 0c5d91a

Please sign in to comment.