Skip to content

Commit

Permalink
Adding PyPi release step to the workflow (#115)
Browse files Browse the repository at this point in the history
* Adding PyPi release step to the workflow

* [run aws tests]
  • Loading branch information
ahsimb authored Feb 21, 2024
1 parent 3057e60 commit e5818d1
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,9 @@ jobs:
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: ${{ env.RELEASE_DIR }}/*

- name: PyPi Release
env:
POETRY_HTTP_BASIC_PYPI_USERNAME: "__token__"
POETRY_HTTP_BASIC_PYPI_PASSWORD: "${{ secrets.PYPI_TOKEN }}"
run: poetry publish
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

* [0.9.0](changes_0.9.0.md)
* [0.8.0](changes_0.8.0.md)
* [0.7.0](changes_0.7.0.md)
* [0.6.0](changes_0.6.0.md)
Expand Down
23 changes: 23 additions & 0 deletions doc/changes/changes_0.9.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# SageMaker Extension 0.9.0, released 2024-02-21

Code name: Publishing to PyPi

## Summary

Publishing the repo to PyPi

### Features

- #81: Prepare release to PyPi

### Bug Fixes

n/a

### Documentation

n/a

### Refactoring

n/a
66 changes: 33 additions & 33 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "exasol-sagemaker-extension"
version = "0.8.0"
version = "0.9.0"
description = "Exasol SageMaker Integration"

license = "MIT"
Expand Down

0 comments on commit e5818d1

Please sign in to comment.