Skip to content

Commit

Permalink
Fix pull failure in actions (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
GWphua authored Aug 14, 2024
1 parent adea08b commit 0a83832
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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-*)
Expand All @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```


Expand Down
2 changes: 1 addition & 1 deletion charts/druid/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
File renamed without changes.

0 comments on commit 0a83832

Please sign in to comment.