release #17
Workflow file for this run
This file contains hidden or 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: | |
| release: | |
| types: [published] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools build setuptools setuptools_scm wheel | |
| python${{ matrix.python-version }} -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}.txt | |
| python${{ matrix.python-version }} -m pip install --no-deps . | |
| - name: Build package | |
| run: python${{ matrix.python-version }} -m build | |
| - name: Publish package | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TOKEN }} | |
| docs: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pip" | |
| - name: Install dependencies | |
| run: | | |
| python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools build setuptools setuptools_scm wheel | |
| python${{ matrix.python-version }} -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}.txt | |
| python${{ matrix.python-version }} -m pip install --no-deps . | |
| - name: Build docs | |
| run: | | |
| git config --local user.email "feedback@materialsproject.org" | |
| git config --local user.name "materialsproject" | |
| git fetch --all --prune | |
| git checkout main | |
| python${{ matrix.python-version }} -m build | |
| cd docs_rst | |
| python${{ matrix.python-version }} featurizer_summary.py > featurizer_summary.rst | |
| python${{ matrix.python-version }} dataset_summary.py > dataset_summary.rst | |
| sphinx-apidoc -o . -f ../src/matminer | |
| make html | |
| cp _static/* ../docs/html/_static | |
| cd ../docs | |
| cp -r html/* . | |
| rm -r html | |
| rm -r doctrees | |
| touch .nojekyll | |
| # git add . | |
| # git commit -a -m "update docs" | |
| # git push |