Skip to content

Merge pull request #88 from epignatelli/fix-cd #77

Merge pull request #88 from epignatelli/fix-cd

Merge pull request #88 from epignatelli/fix-cd #77

Workflow file for this run

name: CD
on:
workflow_dispatch:
push:
branches:
- "main"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get version from file
run: |
VERSION_FILE="$/navix/_version.py"
NAVIX_VERSION="$(cat navix/_version.py | grep '__version__ = ' | cut -d'=' -f2 | sed 's,\",,g' | sed "s,\',,g" | sed 's, ,,g')"
echo "Current version is:"
echo "$NAVIX_VERSION"
echo "NAVIX_VERSION=$NAVIX_VERSION" >> $GITHUB_ENV
- name: Create changelog and push tag
id: changelog
uses: TriPSs/conventional-changelog-action@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
output-file: false
fallback-version: ${{ env.NAVIX_VERSION }}
skip-commit: true
- name: Create Release
uses: ncipollo/release-action@v1
with:
tag: ${{ env.NAVIX_VERSION }}
name: "NAVIX release v${{ env.NAVIX_VERSION }}"
body: ${{ steps.changelog.outputs.clean_changelog }}
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install pypa/build
run: |
python -m pip install build
- name: Build wheel and sdist
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
password: ${{ secrets.PYPI_API_KEY }}
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install --upgrade pip && pip install -r docs/requirements.txt
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Publish docs
run: mkdocs gh-deploy