This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
Merge pull request #7 from TurnipTales/develop #8
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: Release | |
on: | |
push: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
release: | |
name: 🎉 Release TurnipTales Wiki | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install mkdocs dependencies | |
run: | | |
pip install mkdocs-material | |
pip install mkdocs-git-revision-date-localized-plugin | |
pip install mkdocs-glightbox | |
- name: Build and deploy mkdocs | |
run: mkdocs gh-deploy --force |