feat(apps): Unraid Port - digits (#2437)

* feat(apps): Unraid Port - digits

* need alphabetic

* fix questions

* submit port fix

* whoops

* decrease timeout

* add apps user in CI to prevent issues

* sudo

* slight tweak

* Update charts/dev/server-7daystodie/values.yaml

* add configmap

* mount it as well

* again

* subpath

* shoot

* fix object name

* hmm

* 66 to 55

* simplify code a bit

* get LS details

* get status

* try something else

* hmm

* try cmd

* whoops

* bashlist

* test

* use script

* againnn

* more quotes

* non double command

* quoted

* enter.sh

* groupmod

* try setting in args

* try without groupadd

* whoops again

* Apply suggestions from code review

* trigger precommit

* use tccr

* exclude in ci

* whoops
This commit is contained in:
Kjeld Schouten-Lebbing
2022-04-07 15:25:14 +02:00
committed by GitHub
parent 6178a2c37e
commit 4b0c3f9fae
13 changed files with 988 additions and 9 deletions
+3 -3
View File
@@ -96,19 +96,19 @@ runs:
echo "Discovering changed charts since '$latest_tag'..."
changed_charts=()
readarray -t changed_charts <<< "$(lookup_changed_charts "$latest_tag")"
CHARTS=()
for CHARTPATH in "${changed_charts[@]}"
do
IFS='/' read -r -a path_parts <<< "${CHARTPATH}"
CHARTS+=("${path_parts[1]}/${path_parts[2]}")
done
# Remove duplicates
CHARTS=( `printf "%s\n" "${CHARTS[@]}" | sort -u` )
# Set output to changed charts
printf "::set-output name=addedOrModified::%s\n" "${CHARTS[*]}"
echo "Number of detected changed charts: ${#CHARTS[@]}"
if [ ${#CHARTS[@]} -eq 0 ] || [ "${CHARTS[0]}" = " " ] || [ "${CHARTS[0]}" = "/" ]; then
echo "No Changed Charts detected since latest tag..."