Skip to content

Bump Orthanc

Bump Orthanc #2

Workflow file for this run

name: Release Chart
on:
push:
branches: [ master ]
paths:
- 'charts/**'
jobs:
# https://helm.sh/docs/howto/chart_releaser_action/
release:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Update Helm repos
run: |
helm repo add fnndsc https://fnndsc.github.io/charts
helm repo update
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"