mirror of
https://github.com/readthedocs/sphinx_rtd_theme.git
synced 2025-02-25 18:55:21 -06:00
* Update __init__.py because it wasn't updated by previous bump2version
* Add some comments about docker mechanisms that are disturbing release workflow
* Bump to version 1.1.0b3
* Revert "Bump to 1.1.0b2, rebuild assets"
This reverts commit 615eb528cc.
* Add changelog entry for #1073
* Changelog entry for #1193
21 lines
535 B
Bash
21 lines
535 B
Bash
#!/bin/sh
|
|
|
|
# Update latest Python dependencies in case they have changed
|
|
cd /project-readonly
|
|
pip install --upgrade -e ".[dev]"
|
|
|
|
# This helps a potential permission issue, but might be removed
|
|
# pending some more investigation of docker host file system
|
|
# permissions in the bind mount
|
|
# npm cache clean --force
|
|
# npm install
|
|
|
|
cd /project
|
|
|
|
# TODO: This is a bad approach, it copies from the image which
|
|
# may be outdated to the current git tree
|
|
cp -r /project-readonly/sphinx_rtd_theme .
|
|
|
|
echo "Going to invoke: npm run $@"
|
|
npm run $@
|