mirror of https://github.com/vector-im/riot-web
Fix _redirects file for develop.element.io going over 100 entries (#25286)
parent
b633be382e
commit
1941097fed
|
@ -68,12 +68,17 @@ jobs:
|
||||||
run: cp .github/cfp_headers _deploy/_headers
|
run: cp .github/cfp_headers _deploy/_headers
|
||||||
|
|
||||||
# Redirect requests for the develop tarball and the historical bundles to R2
|
# Redirect requests for the develop tarball and the historical bundles to R2
|
||||||
|
# We find the latest 100 bundle.css files and add their bundles to the redirects file
|
||||||
|
# S3 has no sane way to get the age of a directory as they don't really exist
|
||||||
- name: Populate _redirects
|
- name: Populate _redirects
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
echo "/develop.tar.gz $R2_PUBLIC_URL/develop.tar.gz 301"
|
echo "/develop.tar.gz $R2_PUBLIC_URL/develop.tar.gz 301"
|
||||||
for bundle in $(aws s3 ls s3://$R2_BUCKET/bundles/ --endpoint-url $R2_URL --region=auto | awk '{print $2}'); do
|
RESULTS=$(aws s3api --region auto --endpoint-url $R2_URL list-objects-v2 --bucket $R2_BUCKET \
|
||||||
echo "/bundles/${bundle}* $R2_PUBLIC_URL/bundles/${bundle}:splat 301"
|
--query "sort_by(Contents[?ends_with(Key, '/bundle.css')], &LastModified)[-100:].Key"
|
||||||
|
--prefix "bundles/" | jq -r '.[]' | grep -oE '[^\"].*\/\s*')
|
||||||
|
for bundle in "$RESULTS"; do
|
||||||
|
echo "/${path}* $R2_PUBLIC_URL/${path}:splat 301"
|
||||||
done
|
done
|
||||||
} | tee _deploy/_redirects
|
} | tee _deploy/_redirects
|
||||||
env:
|
env:
|
||||||
|
|
Loading…
Reference in New Issue