-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GH actions release workflow (#145)
Notes: - added changes for poetry build cycle and push to test-pypi - updated test_cov script to properly fail with failed tests --------- Co-authored-by: Tyler Hutcherson <tyler.hutcherson@redis.com>
- Loading branch information
1 parent
7faaf4e
commit d7526b5
Showing
6 changed files
with
157 additions
and
103 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
name: check | ||
name: Lint | ||
|
||
on: | ||
pull_request: | ||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version of this deployment' | ||
required: true | ||
|
||
env: | ||
PYTHON_VERSION: "3.11" | ||
POETRY_VERSION: "1.4.2" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Set Version | ||
run: poetry version ${{ github.event.inputs.version }} | ||
|
||
- name: Build package | ||
run: poetry build | ||
|
||
- name: Upload build | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/ | ||
|
||
# test-pypi-publish: | ||
# needs: build | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
# - name: Install Poetry | ||
# uses: snok/install-poetry@v1 | ||
|
||
# - uses: actions/download-artifact@v4 | ||
# with: | ||
# name: dist | ||
# path: dist/ | ||
|
||
# - name: Publish to TestPyPI | ||
# env: | ||
# POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TESTPYPI }} | ||
# run: poetry config repositories.test-pypi https://test.pypi.org/legacy/; poetry config pypi-token.test-pypi $POETRY_PYPI_TOKEN_TESTPYPI; poetry publish --repository test-pypi | ||
|
||
# pre-release-checks: | ||
# needs: test-pypi-publish | ||
# runs-on: ubuntu-latest | ||
|
||
# steps: | ||
# - uses: actions/checkout@v4 | ||
|
||
# - name: Set up Python | ||
# uses: actions/setup-python@v4 | ||
# with: | ||
# python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
# - name: Install Poetry | ||
# uses: snok/install-poetry@v1 | ||
|
||
# - name: Install dependencies | ||
# run: | | ||
# poetry install --all-extras | ||
|
||
# - name: Install published package from TestPyPI | ||
# env: | ||
# OPENAI_API_KEY: ${{ secrets.OPENAI_KEY }} | ||
# GCP_LOCATION: ${{ secrets.GCP_LOCATION }} | ||
# GCP_PROJECT_ID: ${{ secrets.GCP_PROJECT_ID }} | ||
# COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }} | ||
# AZURE_OPENAI_API_KEY: ${{secrets.AZURE_OPENAI_API_KEY}} | ||
# AZURE_OPENAI_ENDPOINT: ${{secrets.AZURE_OPENAI_ENDPOINT}} | ||
# AZURE_OPENAI_DEPLOYMENT_NAME: ${{secrets.AZURE_OPENAI_DEPLOYMENT_NAME}} | ||
# OPENAI_API_VERSION: ${{secrets.OPENAI_API_VERSION}} | ||
# run: | ||
# poetry run pip install --index-url https://test.pypi.org/simple/ --no-deps redisvl-test; poetry run test-cov | ||
|
||
publish: | ||
needs: build #pre-release-checks | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/ | ||
|
||
- name: Publish to PyPI | ||
env: | ||
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI }} | ||
run: poetry publish | ||
|
||
create-release: | ||
needs: publish | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: dist | ||
path: dist/ | ||
|
||
- name: Create Release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "dist/*" | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
draft: false | ||
generateReleaseNotes: true | ||
tag: ${{ github.event.inputs.version }} | ||
commit: main |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ scratch | |
wiki_schema.yaml | ||
docs/_build/ | ||
.venv | ||
coverage.xml | ||
coverage.xml | ||
dist/ |
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