Home > Net >  Github package successfully published, but not showing up in "Packages" section
Github package successfully published, but not showing up in "Packages" section

Time:08-25

I have a package that I published to Github package repository and it was successful, still, I am not able to see this package in the packages section

https://i.stack.imgur.com/WV7fr.jpg

https://i.stack.imgur.com/kGOFG.png

Please refer to the attached screenshots, as seen npm publish is successful. What could I be missing?

CodePudding user response:

Packages are not visible as releases, they will be visible in packages section for your organization:

https://github.com/orgs/ORGANIZATION/packages

For personal packages:

https://github.com/USER?tab=packages

Keep in mind that packages won't be visible under the repository "Packages" section until their name is the same as a repository. It doesn't matter that you publish it from this repository action. In case you don't have a resository with such a name - it will be created for you by GitHub.

CodePudding user response:

I have been experiencing the same thing since Yesterday. I haven't tried with an already released package, but I can confirm new packages are not appearing neither in the org/user packages tab nor in the packages section of the repository despite the fact npm says that they have been published successfully.

  • Related