Skip to content

Commit

Permalink
Merge pull request #2 from adevinta/feature/cicd
Browse files Browse the repository at this point in the history
fix: Implement CICD for publishing in Pypi
  • Loading branch information
alexvazquez1988 committed May 17, 2024
2 parents 54d493d + b7a853c commit 13a1df7
Showing 1 changed file with 106 additions and 0 deletions.
106 changes: 106 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
name: CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]


jobs:
Quality:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v3
with:
python-version: ${{matrix.python-version}}

- name: Install Python Poetry
uses: abatilo/actions-poetry@v2.3.0

- name: Configure poetry
shell: bash
run: python -m poetry config virtualenvs.in-project true

- name: View poetry version
run: poetry --version

- name: Install dependencies
run: |
python -m poetry install
- name: Test
run: poetry run pytest -v

Release:
needs: Quality
if: |
github.event_name == 'push' &&
github.ref == 'refs/heads/main' &&
!contains ( github.event.head_commit.message, 'chore(release)' )
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write

steps:
- uses: actions/setup-python@v3
with:
python-version: 3.8

- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Check release status
id: release-status
shell: bash
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install python-semantic-release
if semantic-release --noop --strict version
then
echo "Releasing new version."
else
echo "Skipping release steps."
fi
- if: steps.release-status.outputs.released == 'true'
name: Release to GitHub
id: github-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
semantic-release version
git fetch --tags
for file in ./dist/**
do gh release upload "${{steps.release-status.outputs.tag}}" $file
done
# - if: steps.release-status.outputs.released == 'true'
# name: Release to Test PyPI
# id: test-pypi-release
# env:
# TEST_PYPI_TOKEN: ${{ secrets.TEST_PYPI_TOKEN }}
# run: |
# poetry config repositories.test-pypi https://test.pypi.org/legacy/
# poetry config pypi-token.test-pypi $TEST_PYPI_TOKEN
# poetry publish -r test-pypi -u __token__

- if: steps.release-status.outputs.released == 'true'
name: Release to PyPI
id: pypi-release
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish

0 comments on commit 13a1df7

Please sign in to comment.