Release 1.3.17 with Reposilite 3.5.19 #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions workflow to automatically deploy the helm chart(s). | |
name: "Helm" | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
paths: [ "charts/**" ] | |
jobs: | |
deploy: | |
name: "Deploy" | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: "Checkout repository" | |
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: "Install Helm" | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.10.1 | |
- name: "Release" | |
uses: helm/[email protected] | |
with: | |
charts_repo_url: https://helm.reposilite.com | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |