Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ruscoder committed Sep 30, 2024
1 parent cdffd6d commit fb863d6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: Publish to https://pypi.org/
on:
release:
types: [created]

jobs:
build:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
packages: write
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
Expand All @@ -20,5 +20,5 @@ jobs:
run: pip install wheel build
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Publish package
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ from collections.abc import AsyncGenerator

import fhirpy_types_r4b as r4b
from aidbox_python_sdk.types import SDKOperation, SDKOperationRequest
from aidbox_python_sdk_tbs import SubscriptionDefinition, r4b_tbs_ctx_factory
from aidbox_python_sdk_tbs import SubscriptionDefinition
from aidbox_python_sdk_tbs.r4b impotr r4b_tbs_ctx_factory
from aiohttp import web

from app import app_keys as ak
Expand Down
2 changes: 1 addition & 1 deletion aidbox_python_sdk_tbs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .types import FilterBy, SubscriptionDefinition

__title__ = "aidbox-python-sdk-tbs"
__version__ = "0.0.1a2"
__version__ = "0.0.1a3"
__author__ = "beda.software"
__license__ = "MIT"
__copyright__ = "Copyright 2024 beda.software"
Expand Down

0 comments on commit fb863d6

Please sign in to comment.