diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9cd9d86..8be7bf5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -53,8 +53,6 @@ jobs: CR_SKIP_EXISTING: true # If left false, having a .tgz file in main repository will throw error. - name: Clean-up and shift files to releases directory run: | - git pull origin main - mkdir -p releases/ shopt -s nullglob files=(.cr-release-packages/druid-*) @@ -65,6 +63,7 @@ jobs: echo "No files starting with 'druid-' found in .cr-release-packages/" fi + git pull origin main # Remove old druid-*.tgz files from the root directory if they exist tgz_files=(druid-*.tgz) if [ ${#tgz_files[@]} -gt 0 ]; then @@ -82,9 +81,11 @@ jobs: fi env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - - name: Print directory tree for debug + - name: Download tree run: | sudo apt-get update && sudo apt-get install tree -y + - name: Print directory tree + run: | tree -a linter-artifacthub: diff --git a/README.md b/README.md index 84ba7b3..4a30aed 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ $ helm repo add druid-helm https://asdf2014.github.io/druid-helm/ # Install chart -$ helm install my-druid druid-helm/druid --version 30.0.9 +$ helm install my-druid druid-helm/druid --version 30.0.10 ``` diff --git a/charts/druid/Chart.yaml b/charts/druid/Chart.yaml index 7bb2742..bce3962 100644 --- a/charts/druid/Chart.yaml +++ b/charts/druid/Chart.yaml @@ -15,7 +15,7 @@ apiVersion: v2 name: druid -version: 30.0.9 +version: 30.0.10 appVersion: 30.0.0 description: Apache Druid is a high performance real-time analytics database. keywords: diff --git a/druid-30.0.9.tgz b/releases/druid-30.0.9.tgz similarity index 100% rename from druid-30.0.9.tgz rename to releases/druid-30.0.9.tgz