diff options
| author | Ben Busby <contact@benbusby.com> | 2023-09-14 18:29:55 -0600 |
|---|---|---|
| committer | Ben Busby <contact@benbusby.com> | 2023-09-14 18:29:55 -0600 |
| commit | ad7941c4d2106f6fc460280eb665cae839dd6d55 (patch) | |
| tree | b0624225c3498b8c76d41d2ebe054153f749b86f /.github | |
| parent | 21c15528a530ddefb252831f0cb64465eee4726e (diff) | |
| download | farside-ad7941c4d2106f6fc460280eb665cae839dd6d55.tar.gz | |
[CI] Ensure teddit urls are not null before filter
Teddit's instance file contains null URL entries, which was breaking the
nightly build. This ensures that the URL exists for an entry before
continuing with processing.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/update-instances.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/update-instances.yml b/.github/workflows/update-instances.yml index 5fd4593..e0c4899 100644 --- a/.github/workflows/update-instances.yml +++ b/.github/workflows/update-instances.yml @@ -170,6 +170,7 @@ jobs: curl -s https://codeberg.org/teddit/teddit/raw/branch/main/instances.json | \ jq '[ .[] | + select(.url != null) | select(.url | contains("https")) | .url ] | sort' > teddit-tmp.json |
