Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Feb 19, 2024
1 parent 8aa4e62 commit 523e0ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
python-version: '3.10'

- name: Install Python requirements
run: pip install -r requirements.txt
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Install Python requirements insiders
run: pip install -r requirements-insiders.txt
Expand Down
5 changes: 5 additions & 0 deletions website/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
mkdocs-material==9.5.9
mkdocs-video==1.5.0
mkdocs-static-i18n==1.2.0
fancyboxmd==1.1.0
ruamel.yaml==0.18.6
2 changes: 2 additions & 0 deletions website/scripts/mkdocs_tx_commit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ if [[ $(git diff --exit-code mkdocs.yml) ]]; then
# on push create a pull request
git checkout ${GITHUB_REF_NAME}
BRANCH="update-mkdocs-tx-$RANDOM"
pre-commit install
git checkout -b ${BRANCH}
git add mkdocs.yml
pre-commit run
git commit -m "Update mkdocs.yml translation"
git push -u origin $BRANCH
echo "gh pr create -B ${GITHUB_REF_NAME} -H ${BRANCH} --title 'Update mkdocs translations' --body 'run from mkdocs_tx'"
Expand Down

0 comments on commit 523e0ab

Please sign in to comment.