File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change 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'
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
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"
You can’t perform that action at this time.
0 commit comments