- Move directories into more descriptive organization
- src_mdbook, src_markdeep, src_raw
- mdbook will be generated from mdbook
- markdeep will be generated to html
- raw will be copied without modification
- Add script that will run on a succesful commit to main. This
script will update /docs and commit the changes.
18 lines
406 B
Bash
Executable File
18 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pushd "$(dirname "$0")" > /dev/null
|
|
|
|
curl -OL https://nightly.link/google/filament/workflows/web-continuous/main/filament-web.zip
|
|
unzip -q filament-web.zip
|
|
tar -xvzf filament-release-web.tgz
|
|
rm filament-release-web.tgz
|
|
rm filament-web.zip
|
|
rm filament.d.ts
|
|
cp ../../web/samples/remote.html index.html
|
|
|
|
popd
|
|
|
|
git status
|
|
echo ""
|
|
echo "All done! Next, make a git commit that updates docs/remote."
|