Skip to content

🐛 correct case of DataDictionary file path (#241) #138

🐛 correct case of DataDictionary file path (#241)

🐛 correct case of DataDictionary file path (#241) #138

Workflow file for this run

---
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