-
-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09d3669
commit d80af39
Showing
2 changed files
with
8 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 |
---|---|---|
|
@@ -93,11 +93,16 @@ jobs: | |
cp -rl modules/repo-i18n/includes . | ||
cp -rl modules/repo-i18n/theme . | ||
- name: Install Python | ||
- name: Install Python (pipenv) | ||
if: inputs.privileged | ||
uses: actions/setup-python@v5 | ||
with: | ||
cache: "pipenv" | ||
|
||
- name: Install Python (no pipenv) | ||
if: ${{ !inputs.privileged }} | ||
uses: actions/setup-python@v5 | ||
|
||
- name: Restore Privacy Plugin Cache | ||
uses: actions/cache/[email protected] | ||
id: privacy_cache_restore | ||
|
@@ -146,9 +151,9 @@ jobs: | |
run: | | ||
pip install mkdocs-material | ||
sudo apt install pngquant | ||
echo "EXTRA_FLAGS=""$EXTRA_FLAGS" --cmd=mkdocs"" >> "$GITHUB_ENV" | ||
- name: Build Website | ||
if: inputs.privileged | ||
run: | | ||
eval ./run.sh --build --lang=${{ inputs.lang }} "$EXTRA_FLAGS" | ||
|
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