Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
ogrodnek committed Sep 8, 2024
1 parent 86757f6 commit a98a477
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
release:
environment: release
name: Release to PyPI
concurrency: release
permissions:
Expand Down Expand Up @@ -47,7 +48,15 @@ jobs:
- name: Install project
run: poetry install --no-interaction

- name: Set up semantic release
run: poetry run semantic-release --noop publish
- name: Semantic release
run: poetry run semantic-release publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: build
run: poetry install && poetry build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit a98a477

Please sign in to comment.