Skip to content

fix: update docker.io/ollama/ollama docker tag to v0.4.2 (#785) #544

fix: update docker.io/ollama/ollama docker tag to v0.4.2 (#785)

fix: update docker.io/ollama/ollama docker tag to v0.4.2 (#785) #544

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6.2.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
- name: Export GPG key to legacy format
run: gpg --export-secret-keys > ~/.gnupg/pubring.gpg
- name: Set up Helm
uses: azure/setup-helm@v3.5
with:
version: v3.12.3 # renovate: helm
- name: Add dependency chart repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami/
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"