Skip to content

Commit

Permalink
Merge pull request #170 from coveooss/feat/coveo-ref
Browse files Browse the repository at this point in the history
make a package out of coveo-testing/ref
  • Loading branch information
jonapich authored Oct 27, 2023
2 parents 865226d + 2ba9717 commit 6005118
Show file tree
Hide file tree
Showing 16 changed files with 1,870 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/coveo-ref.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: coveo-ref

on:
push:
branches:
- main
paths:
- 'coveo-ref/**'

pull_request:
types: [opened, synchronize, reopened]
paths:
- 'coveo-ref/**'
- '.github/workflows/coveo-ref.yml'

workflow_dispatch:
inputs:
publish:
description: "Publish to pypi.org?"
required: false
default: 'false'


jobs:
stew-ci:
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-latest
needs: stew-ci

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Publish to pypi
uses: ./.github/workflows/actions/publish-to-pypi
with:
project-name: ${{ github.workflow }}
pypi-token: ${{ secrets.PYPI_TOKEN_COVEO_REF }}
pre-release: ${{ github.ref != 'refs/heads/main' }}
dry-run: ${{ github.ref != 'refs/heads/main' && github.event.inputs.publish != 'true' }}
Loading

0 comments on commit 6005118

Please sign in to comment.