Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.3.1 #5

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ env:

jobs:
publish:
environment: pypi
environment:
name: pypi
url: https://pypi.org/p/rialto
permissions:
id-token: write
runs-on: ubuntu-20.04
steps:
- name: Checkout Rialto
Expand All @@ -26,10 +30,10 @@ jobs:
poetry-version: 1.5.1

- name: Install dependencies
run: |
poetry install
run: poetry install

- name: Build and publish the wheel to jfrog
run: |
poetry build
twine upload dist/*
- name: Build the wheel
run: poetry build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Loading