Skip to content

Release 1.3.10 with Reposilite 3.5.12 #43

Release 1.3.10 with Reposilite 3.5.12

Release 1.3.10 with Reposilite 3.5.12 #43

Workflow file for this run

# 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 }}"