Merge pull request #189 from coveooss/fix/gitpython-vuln #138
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: coveo-systools | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'coveo-systools/**' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'coveo-systools/**' | |
- '.github/workflows/coveo-systools.yml' | |
workflow_dispatch: | |
inputs: | |
publish: | |
description: "Publish to pypi.org?" | |
required: false | |
default: 'false' | |
jobs: | |
pyprojectci: | |
name: pyproject ci | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8, "3.10"] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Run stew ci | |
uses: coveo/stew@main | |
with: | |
project-name: ${{ github.workflow }} | |
python-version: ${{ matrix.python-version }} | |
poetry-version: "<2" | |
publish: | |
name: Publish to pypi.org | |
runs-on: ubuntu-20.04 | |
needs: pyprojectci | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Publish to pypi | |
uses: ./.github/workflows/actions/publish-to-pypi | |
with: | |
project-name: ${{ github.workflow }} | |
pypi-token: ${{ secrets.PYPI_TOKEN_COVEO_SYSTOOLS }} | |
pre-release: ${{ github.ref != 'refs/heads/main' }} | |
dry-run: ${{ github.ref != 'refs/heads/main' && github.event.inputs.publish != 'true' }} |