release.yml 524 B

12345678910111213141516171819202122232425
  1. name: Release Charts
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. release:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Checkout
  11. uses: actions/checkout@v2
  12. with:
  13. fetch-depth: 0
  14. - name: Configure Git
  15. run: |
  16. git config user.name "$GITHUB_ACTOR"
  17. git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
  18. - name: Run chart-releaser
  19. uses: helm/chart-releaser-action@v1.1.0
  20. env:
  21. CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"