Revert "Add mapping for synced lyrics tag" #764
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: Check and Full Build | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- 'master' | |
- 'release' | |
- '0*' | |
- '1*' | |
- '2*' | |
- '3*' | |
- '4*' | |
- '5*' | |
- '6*' | |
- '7*' | |
- '8*' | |
- '9*' | |
paths: | |
- '**.po' | |
- '**.rst' | |
- '**.txt' | |
- '**/images/*' | |
- '_static/**' | |
- '_templates/**' | |
- 'setup.py' | |
- 'conf.py' | |
- 'tag_mapping.py' | |
jobs: | |
lint_rst_and_basic_build: | |
name: Check with LintRST and Full Build | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Lint Test RST Files | |
run: python ./setup.py test rst | |
- name: Setup for Build | |
run: | | |
export SPHINXBUILD=`which sphinx-build` | |
mkdir _build | |
mkdir docs | |
- name: Build Tag Map Files | |
run: | | |
python ./setup.py build map | |
- name: Store Tag Map Build Output File | |
uses: actions/upload-artifact@v2 | |
with: | |
name: tag_map_files | |
path: docs/MusicBrainz_Picard_Tag_Map.* | |
retention-days: 5 | |
# - name: Update Translation Files | |
# run: | | |
# python ./setup.py build pot | |
- name: Build HTML Files | |
run: | | |
python ./setup.py clean html | |
python ./setup.py -l all build html | |
- name: Store HTML Build Output Files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: html_files | |
path: docs/*.zip | |
retention-days: 5 | |
- name: Build EPUB Files | |
run: | | |
python ./setup.py clean epub | |
python ./setup.py -l all build epub | |
- name: Store ePub Build Output Files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: epub_files | |
path: docs/*.epub | |
retention-days: 5 | |
- name: Install LaTeX dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install latexmk | |
sudo apt-get install xzdec | |
sudo apt-get install texlive | |
sudo apt-get install texlive-fonts-extra | |
sudo apt-get install texlive-latex-extra | |
sudo apt-get install texlive-luatex | |
sudo apt-get install xindy | |
- name: Build PDF Files | |
run: | | |
python ./setup.py clean pdf | |
python ./setup.py -l all build pdf | |
- name: Store PDF Build Output Files | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pdf_files | |
path: docs/*.pdf | |
retention-days: 5 | |
- name: Display Variables Passed to Publish Action | |
run: | | |
cat docs/__init__.py |