4 Commits

Author SHA1 Message Date
ronahk
cb535b1308 add needs 2022-12-18 15:00:52 +02:00
ronahk
c6b1586e88 fix pipeline 2022-12-18 14:40:09 +02:00
ronahk
bae6650263 fix pipeline 2022-12-18 14:27:12 +02:00
ronahk
d0836eee0e update plugin version 2022-12-18 14:25:43 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ jobs:
image:
runs-on: ubuntu-latest
needs: release
needs: [release, pre_release]
timeout-minutes: 60
steps:
- name: Check out the repo
@@ -85,13 +85,13 @@ jobs:
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ needs.pre_release.outputs.release_tag }}
tags: komodorio/helm-dashboard:${{ needs.pre_release.outputs.release_tag }},komodorio/helm-dashboard:latest
labels: ${{ steps.meta.outputs.labels }}
build-args: VER=${{ needs.pre_release.outputs.release_tag }}
publish_chart:
runs-on: ubuntu-latest
need: image
needs: [image, pre_release]
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout

View File

@@ -1,5 +1,5 @@
name: "dashboard"
version: "0.2.8"
version: "0.3.0"
usage: "A simplified way of working with Helm"
description: "View HELM situation in nice web UI"
command: "$HELM_PLUGIN_DIR/bin/helm-dashboard"