Merge pull request #45 from alanlivio/main #50
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: 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 }} |