build(deps): bump actions/download-artifact from 3 to 4 #493
Workflow file for this run
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
name: docs | |
on: | |
push: | |
branches: | |
- "**" | |
tags: | |
- v* | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.repository.has_pages && (github.repository_owner != '0xERR0R' || github.ref_type == 'tag' || github.ref_name == 'main') }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: install tools | |
run: pip install mkdocs-material mike | |
- name: Setup doc deploy | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
- name: Deploy version | |
run: | | |
VERSION="$(sed 's:/:-:g' <<< "$GITHUB_REF_NAME")" | |
if [[ ${{github.ref}} =~ ^refs/tags/ ]]; then | |
EXTRA_ALIAS=latest | |
fi | |
mike deploy --push --update-aliases "$VERSION" $EXTRA_ALIAS | |
tr '[:upper:]' '[:lower:]' <<< "https://${{github.repository_owner}}.github.io/${{github.event.repository.name}}/$VERSION/" >> "$GITHUB_STEP_SUMMARY" |