chore: update workflow c5d41124
Steve · 2026-04-25 13:29 2 file(s) · +4 −4
.github/workflows/docker-test.yml +2 −2
19 19
      - name: Determine which apps to build
20 20
        id: filter
21 21
        run: |
22 -
          ALL='["cellar","sipp","feeds","parcels","jotts","og","shrink","backup","posts"]'
22 +
          ALL='["cellar","sipp","feeds","parcels","jotts","og","shrink","backup","posts","library"]'
23 23
24 24
          changed=$(git diff --name-only origin/${{ github.base_ref }}...HEAD)
25 25
29 29
          fi
30 30
31 31
          apps=()
32 -
          for app in cellar sipp feeds parcels jotts og shrink backup posts; do
32 +
          for app in cellar sipp feeds parcels jotts og shrink backup posts library; do
33 33
            if echo "$changed" | grep -q "^apps/${app}/"; then
34 34
              apps+=("\"${app}\"")
35 35
            fi
.github/workflows/docker.yml +2 −2
25 25
      - name: Determine which apps to build
26 26
        id: filter
27 27
        run: |
28 -
          ALL='["cellar","sipp","feeds","parcels","jotts","og","shrink","backup", "posts"]'
28 +
          ALL='["cellar","sipp","feeds","parcels","jotts","og","shrink","backup","posts","library"]'
29 29
30 30
          # Map cargo package names to directory names
31 31
          pkg_to_dir() {
61 61
          fi
62 62
63 63
          apps=()
64 -
          for app in cellar sipp feeds parcels jotts og shrink backup posts; do
64 +
          for app in cellar sipp feeds parcels jotts og shrink backup posts library; do
65 65
            if echo "$changed" | grep -q "^apps/${app}/"; then
66 66
              apps+=("\"${app}\"")
67 67
            fi