feat: lmax connector service (#239) #137
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
--- | |
name: Task - Publish Package to Test PyPi | |
on: | |
push: | |
branches: | |
- master | |
defaults: | |
run: | |
working-directory: pragma-sdk | |
jobs: | |
test_pypi_publish: | |
name: Upload package to Test PyPI | |
runs-on: ubuntu-latest | |
# Use Permissions to access the repository | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v4 | |
with: | |
enable-cache: true | |
- run: uv build | |
- name: Upload package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: pragma-sdk/dist | |
repository-url: https://test.pypi.org/legacy/ | |
skip-existing: true |