chore: update vue-i18n and related dependencies to version 9.14.2 (#330) #59
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: github-pages | |
on: | |
push: | |
branches: [master] | |
tags: ["v*"] | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install mike mkdocs-material[imaging] mkdocs-minify-plugin | |
- name: Publish documentation | |
run: mike deploy --push --update-aliases ${{ github.ref_name }} latest | |
env: | |
GIT_COMMITTER_NAME: "github-actions[bot]" | |
GIT_COMMITTER_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com" |