Skip to content

Commit

Permalink
fix: add repositories before build and release
Browse files Browse the repository at this point in the history
  • Loading branch information
brittonhayes committed Mar 25, 2023
1 parent df80247 commit a510637
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/helm.yml
Expand Up @@ -27,6 +27,12 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v3

- name: Add repositories
run: |
for dir in $(ls -d charts/*/); do
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- name: Build dependencies
run: |
helm dependency update charts/arma-reforger
Expand Down

0 comments on commit a510637

Please sign in to comment.