Release 0.23.3 #59
Workflow file for this run
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: release | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
- '*.*.*-*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build package using Poetry and store result | |
uses: chaoss/grimoirelab-github-actions/build@master | |
with: | |
artifact-name: perceval-dist | |
artifact-path: dist | |
tests: | |
needs: [build] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # 3.1.0 | |
- name: Download distribution artifact | |
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 | |
with: | |
name: perceval-dist | |
path: dist | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
echo "PATH=$HOME/.poetry/bin:$PATH" >> $GITHUB_ENV | |
- name: Install dev dependencies | |
run: | | |
poetry install --only dev --no-root | |
- name: Test package | |
run: | | |
PACKAGE_NAME=`(cd dist && ls *whl | cut -f 1 -d "-")` && echo $PACKAGE_NAME | |
poetry run pip install --pre --find-links ./dist/ $PACKAGE_NAME | |
cd tests && poetry run python run_tests.py | |
release: | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create a new release on the repository | |
uses: chaoss/grimoirelab-github-actions/release@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
publish: | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Publish the package on PyPI | |
uses: chaoss/grimoirelab-github-actions/publish@master | |
with: | |
artifact-name: perceval-dist | |
artifact-path: dist | |
pypi-api-token: ${{ secrets.PYPI_API_TOKEN }} |