Skip to content

Commit

Permalink
ci: add publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
echozio committed Feb 1, 2024
1 parent 6a1052e commit 992c419
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Helm chart to Google Artifact Registry
on:
release:
types: [published]
jobs:
publish:
name: Publish Helm chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Publish
uses: stafftastic/helm-publish-action@main
with:
registry: registry-1.docker.io
repository: stafftasticcharts
username: stafftasticpush
password: ${{secrets.DOCKER_HUB_TOKEN}}

0 comments on commit 992c419

Please sign in to comment.