Skip to content

Commit c92f0c2

Browse files
author
spencer@primus
committed
Fix versions issue in workflow
1 parent 11d22d8 commit c92f0c2

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/publish_to_pypi.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,18 @@ jobs:
1616
with:
1717
branch: $BRANCH_NAME
1818
os: ubuntu-22.04
19-
python-versions: "3.10"
19+
python-versions: "[ '3.10' ]"
20+
uv-version: "[ '0.6.14' ]"
2021

2122
# now we run the publishing protocol
2223
publish:
2324
name: Run publishing protocol
24-
uses: avstack-lab/workflows/.github/workflows/publish_to_index.yml@main
2525
needs: test
26+
uses: avstack-lab/workflows/.github/workflows/publish_to_index.yml@main
2627
with:
2728
os: ubuntu-22.04
2829
python-version: "3.10"
2930
uv-version: "0.6.14"
30-
token: ${{ secrets.PYPI_API_TOKEN }}
31-
index: "pypi"
31+
index: "pypi"
32+
secrets:
33+
token: ${{ secrets.PYPI_API_TOKEN }}

.github/workflows/publish_to_test_pypi.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
with:
1616
branch: $BRANCH_NAME
1717
os: ubuntu-22.04
18-
python-versions: "3.10"
18+
python-versions: "[ '3.10' ]"
19+
uv-version: "[ '0.6.14' ]"
1920

2021
# now we run the publishing protocol
2122
publish:

0 commit comments

Comments
 (0)