forked from dottxt-ai/outlines
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try conditional publishing & workflow_dispatch
- Loading branch information
Andrew Lapp
committed
Feb 21, 2024
1 parent
a6cba64
commit 834e700
Showing
1 changed file
with
11 additions
and
0 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 |
---|---|---|
|
@@ -4,6 +4,12 @@ on: | |
release: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
inputs: | ||
release_tag: | ||
description: 'Run Partial Release (Push to Docker Hub, Dont Push to PyPi)' | ||
required: false | ||
default: 'latest' | ||
|
||
jobs: | ||
release-job: | ||
|
@@ -33,6 +39,7 @@ jobs: | |
run: docker system prune --all --force | ||
|
||
- name: Set up Python | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.10" | ||
|
@@ -42,23 +49,27 @@ jobs: | |
python -m pip install build | ||
python -m build | ||
- name: Check that the package version matches the Release name | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
run: | | ||
grep -Rq "^Version: ${GITHUB_REF:10}$" outlines.egg-info/PKG-INFO | ||
- name: Check sdist install and imports | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
run: | | ||
mkdir -p test-sdist | ||
cd test-sdist | ||
python -m venv venv-sdist | ||
venv-sdist/bin/python -m pip install ../dist/outlines-*.tar.gz | ||
venv-sdist/bin/python -c "import outlines" | ||
- name: Check wheel install and imports | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
run: | | ||
mkdir -p test-wheel | ||
cd test-wheel | ||
python -m venv venv-wheel | ||
venv-wheel/bin/python -m pip install ../dist/outlines-*.whl | ||
venv-wheel/bin/python -c "import outlines" | ||
- name: Publish to PyPi | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
|