JRubics / poetry-publish

An action to build and publish python package to pypi (https://pypi.org/) using poetry (https://github.com/sdispater/poetry)
BSD 3-Clause "New" or "Revised" License
129 stars 17 forks source link

Add support for Private PYServers #12

Closed espoirMur closed 2 years ago

espoirMur commented 2 years ago

Let say I have my PyServer, which is hosted somewhere.

Can it be possible to use this GitHub action to push to that server?

I think it may be helpful to add that as features.

I don't have the bandwidth now. I can have a look into this, I am just writing it here for reference.

May be a good issue for #HackOctoberBest

JRubics commented 2 years ago

If you mean server such as PyPi, you can set variables such as:

repository_name: "testpypi"
repository_url: "https://test.pypi.org/legacy/"

If you need authentication with username and password, I will add it :) If it is not what you mean, please explain in more details. Thanks :)

JRubics commented 2 years ago

I hope i fulfilled your needs. If not, please reopen the issue with the further explanation :)

espoirMur commented 2 years ago

okay, that makes sense, I think adding authentication is what is missing.