Skip to content

Commit

Permalink
add a release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
philtweir committed Sep 17, 2022
1 parent b951f00 commit 52f66da
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: helm-release
on:
push:
branches:
- master
jobs:
chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Download chart releaser
run: |
curl -sSLo hcr.tar.gz "https://github.com/pete911/hcr/releases/download/v0.0.5/hcr_0.0.5_linux_amd64.tar.gz"
tar -xzf hcr.tar.gz
rm -f hcr.tar.gz
- name: Package and release chart
run: |
git config user.email "[email protected]"
git config user.name "gh-action"
./hcr -chart-dir archesproject -token "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 52f66da

Please sign in to comment.