-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/enhance-publishing' into share…
…-magic-wormhole
- Loading branch information
Showing
3 changed files
with
13 additions
and
20 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,4 +1,4 @@ | ||
name: Semantic Release and PyPi Publish | ||
name: Semantic Release and PyPI Publish | ||
|
||
on: | ||
push: | ||
|
@@ -20,8 +20,6 @@ jobs: | |
uses: relekang/python-semantic-release@master | ||
with: | ||
github_token: ${{ secrets.ADMIN_TOKEN }} # Use the new token for authentication | ||
repository_username: __token__ | ||
repository_password: ${{ secrets.PYPI_TOKEN }} | ||
git_committer_name: "OpenAdapt Bot" | ||
git_committer_email: "[email protected]" | ||
|
||
|
@@ -34,12 +32,15 @@ jobs: | |
with: | ||
ref: main | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.10' | ||
- name: Build and publish to PyPI | ||
uses: JRubics/[email protected] | ||
with: | ||
python_version: "3.10" | ||
poetry_version: "==1.5.1" | ||
pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
- name: Publish to PyPI | ||
env: | ||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
run: | | ||
pip install poetry | ||
poetry install | ||
poetry config pypi-token.pypi $PYPI_TOKEN | ||
poetry build | ||
poetry publish --no-interaction --skip-existing |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
|
@@ -3,16 +3,7 @@ name = "openadapt" | |
version = "0.8.0" | ||
description = "GUI Process Automation with Transformers" | ||
authors = [ | ||
'Mustafa Abdulrahman <[email protected]>', | ||
'Richard Abrich <[email protected]>', | ||
'Avid Eslami <[email protected]>', | ||
'Andrew Gorton <[email protected]>', | ||
'Krish Patel <[email protected]>', | ||
'Dian Rong <[email protected]>', | ||
'Aaron Shah <[email protected]>', | ||
'Jesica Susanto <[email protected]>', | ||
'Angela Zhuo <[email protected]>', | ||
'Owais Zahid <[email protected]>' | ||
'OpenAdapt.AI Team <[email protected]>', | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
|