Skip to content

Commit b4058fb

Browse files
committed
chore: no longer build MongoDB and SinusBot images
1 parent 1f49f30 commit b4058fb

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/apps.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ jobs:
3838
uptime_kuma_2_changed:
3939
- 'apps/uptime-kuma-2/**'
4040
- 'scripts/apps/uptime-kuma-2/**'
41-
mongodb_changed:
42-
- 'apps/mongodb/**'
43-
- 'scripts/apps/mongodb/**'
44-
sinusbot_changed:
45-
- 'apps/sinusbot/**'
46-
- 'scripts/apps/sinusbot/**'
4741
base_changed:
4842
- 'base/**'
4943
- 'scripts/base/ampstart.sh'
@@ -54,7 +48,7 @@ jobs:
5448
set -euo pipefail
5549
# Default matrix when not a push: build all apps
5650
if [ "${{ github.event_name }}" != "push" ]; then
57-
echo 'apps_json=["postgresql","uptime-kuma-2","mongodb","sinusbot"]' >> "$GITHUB_OUTPUT"
51+
echo 'apps_json=["postgresql","uptime-kuma-2"]' >> "$GITHUB_OUTPUT"
5852
exit 0
5953
fi
6054
@@ -67,8 +61,6 @@ jobs:
6761
apps=()
6862
if [ "${{ steps.filter.outputs.postgresql_changed || 'false' }}" = "true" ]; then apps+=('"postgresql"'); fi
6963
if [ "${{ steps.filter.outputs.uptime_kuma_2_changed || 'false' }}" = "true" ]; then apps+=('"uptime-kuma-2"'); fi
70-
if [ "${{ steps.filter.outputs.mongodb_changed || 'false' }}" = "true" ]; then apps+=('"mongodb"'); fi
71-
if [ "${{ steps.filter.outputs.sinusbot_changed || 'false' }}" = "true" ]; then apps+=('"sinusbot"'); fi
7264
7365
if [ "${#apps[@]}" -eq 0 ]; then
7466
echo 'apps_json=[]' >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)