-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor GitHub Actions workflow to use latest version of actions/che…
…ckout and actions/setup-python
- Loading branch information
1 parent
44dbfa4
commit 12893ea
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,14 +41,14 @@ jobs: | |
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN_MKDOCS }} | ||
run: | | ||
# Git Config SSH -> HTTPS | ||
git config --global url."https://".insteadOf git:// | ||
# Git Clone with GH | ||
gh clone squidfunk/mkdocs-material-insiders | ||
# Install | ||
sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev | ||
python3 -m pip install -U pip | ||
python3 -m pip install -r requirements.txt | ||
python3 -m pip install git+ssh://[email protected]/squidfunk/mkdocs-material-insiders.git | ||
python3 -m pip install -e mkdocs-material-insiders | ||
- name: Deploy mkdocs 🚀 | ||
run: python3 -m mkdocs gh-deploy --force --remote-branch ${{ steps.branch_check.outputs.env_name }} | ||
|