Compare commits
2 Commits
d8dfeab0a1
...
dd81256375
| Author | SHA1 | Date | |
|---|---|---|---|
|
dd81256375
|
|||
| 10ae394465 |
@@ -78,7 +78,7 @@ jobs:
|
|||||||
echo "$GIT_DIFF"
|
echo "$GIT_DIFF"
|
||||||
|
|
||||||
for path in $GIT_DIFF; do
|
for path in $GIT_DIFF; do
|
||||||
if [[ echo "$path" | grep -q -E "hosts/[^/]+/[^/]+" ]]; then
|
if echo "$path" | grep -q -E "hosts/[^/]+/[^/]+"; then
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Adding path: $path"
|
echo ">> Adding path: $path"
|
||||||
CHANGED_COMPOSE+=$(echo "$path")
|
CHANGED_COMPOSE+=$(echo "$path")
|
||||||
|
|||||||
@@ -80,7 +80,7 @@ jobs:
|
|||||||
echo "$GIT_DIFF"
|
echo "$GIT_DIFF"
|
||||||
|
|
||||||
for path in $GIT_DIFF; do
|
for path in $GIT_DIFF; do
|
||||||
if [ echo "$path" | grep -q -E "clusters/[^/]+/helm/[^/]+" ]; then
|
if echo "$path" | grep -q -E "clusters/[^/]+/helm/[^/]+"; then
|
||||||
echo ""
|
echo ""
|
||||||
echo ">> Adding path: $path"
|
echo ">> Adding path: $path"
|
||||||
CHANGED_CHARTS+=$(echo "$path" | awk -F '/' '{print $4}')
|
CHANGED_CHARTS+=$(echo "$path" | awk -F '/' '{print $4}')
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ services:
|
|||||||
- /dev/net/tun:/dev/net/tun
|
- /dev/net/tun:/dev/net/tun
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
image: docker.io/postgres:17.7-alpine3.21
|
image: docker.io/postgres:18.1-alpine3.21
|
||||||
container_name: gitea-postgres
|
container_name: gitea-postgres
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
|
|||||||
Reference in New Issue
Block a user