File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
- name : Publish to PyPI [Production]
1
+ name : Publish to PyPI Manual [Production]
2
2
3
3
# Allow manual triggering of the workflow
4
4
on :
@@ -67,16 +67,15 @@ jobs:
67
67
# ----------------------------------------------
68
68
- name : Build and publish databricks sql connector to PyPI
69
69
working-directory : ./databricks_sql_connector
70
- uses : JRubics/poetry-publish@v1.10 # Use the poetry-publish action to handle publishing
71
- with :
72
- pypi_token : ${{ secrets.PROD_PYPI_TOKEN }} # The PyPI token for authentication, stored in GitHub Secrets
73
-
70
+ run : |
71
+ poetry build
72
+ poetry publish -u __token__ -p ${{ secrets.PROD_PYPI_TOKEN }} # Publish with PyPI token
74
73
# ----------------------------------------------
75
74
# Step 7: Build and publish the second package to PyPI
76
75
# ----------------------------------------------
77
76
78
77
- name : Build and publish databricks sql connector core to PyPI
79
78
working-directory : ./databricks_sql_connector_core
80
- uses : JRubics/poetry-publish@v1.10 # Use the poetry-publish action to handle publishing
81
- with :
82
- pypi_token : ${{ secrets.PROD_PYPI_TOKEN }} # The PyPI token for authentication, stored in GitHub Secrets
79
+ run : |
80
+ poetry build
81
+ poetry publish -u __token__ -p ${{ secrets.PROD_PYPI_TOKEN }} # Publish with PyPI token
You can’t perform that action at this time.
0 commit comments