tweak docs formatting #110
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: "📃 Publish documentation " | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- musify/** | |
- docs/** | |
schedule: | |
- cron: '0 0 1 1 *' # refresh copyright year on docs at least once every year | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: 🏗️ Build | |
uses: ./.github/workflows/docs_build.yml | |
deploy: | |
name: 🚀 Deploy pages | |
runs-on: ubuntu-latest | |
needs: build | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: 🚀 Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |