Skip to content

chore(deps): update plugin io.kotest.multiplatform to v6 #676

chore(deps): update plugin io.kotest.multiplatform to v6

chore(deps): update plugin io.kotest.multiplatform to v6 #676

Workflow file for this run

name: ๐Ÿ“š Build & Deploy MkDocs
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: ๐Ÿ“ฅ Checkout ${{ github.repository }}
uses: actions/checkout@v4
- name: ๐Ÿ Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: ๐Ÿ“„ Install Material for MkDocs
run: pip install -r requirements.txt
- name: Generate list
run: |
chmod +x ./scripts/generate-index-list.sh
./scripts/generate-index-list.sh
# ๅทฎๅˆ†ใŒใ‚ใ‚Œใฐใ‚จใƒฉใƒผ
git config core.filemode false
git diff --exit-code
- name: ๐Ÿ—๏ธ Build MkDocs
run: python -m mkdocs build --verbose --clean --strict
- name: ๐Ÿ“ค Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
deploy:
runs-on: ubuntu-latest
if: github.event_name == 'push'
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: ๐Ÿš€ Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4