[castai-pod-pinner] bump pod pinner version v1.2.3 (#708) #894
Workflow file for this run
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
name: Release CNAB | |
on: | |
push: | |
tags: | |
- 'castai*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# We need to manually add repos for deps due to bug in https://github.com/helm/chart-releaser/issues/135 | |
- name: Add dependencies | |
run: | | |
helm repo add vector https://helm.vector.dev | |
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts | |
helm repo add incubator https://charts.helm.sh/incubator | |
helm repo add elasticsearch https://helm.elastic.co | |
helm repo add grafana https://grafana.github.io/helm-charts | |
helm repo add ollama https://otwld.github.io/ollama-helm | |
- name: Install Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.17.0 | |
- name: Release CNAB package | |
run: scripts/release-cnab-package.sh | |
env: | |
TAG_NAME: ${{ github.ref_name }} | |
AZURE_K8S_APP_MARKETPLACE_SP_ID: ${{ secrets.AZURE_K8S_APP_MARKETPLACE_SP_ID }} | |
AZURE_K8S_APP_MARKETPLACE_SP_SECRET: ${{ secrets.AZURE_K8S_APP_MARKETPLACE_SP_SECRET }} | |
AZURE_K8S_APP_MARKETPLACE_TENANT_ID: ${{ secrets.AZURE_K8S_APP_MARKETPLACE_TENANT_ID }} | |
AZURE_K8S_APP_MARKETPLACE_REGISTRY_NAME: ${{ secrets.AZURE_K8S_APP_MARKETPLACE_REGISTRY_NAME }} |