Home > Back-end >  How to create CI to GitHub Marketplace?
How to create CI to GitHub Marketplace?

Time:01-03

I'm currently create a CI for my project on GitHub, but I want to publish my CI to GitHub marketplace.

Anyone know how to do this?

CodePudding user response:

Publishing to GitHub Marketplace

You can follow this tutorial for publish a GitHub Action (CI) to GitHub Marketplace :https://docs.github.com/en/actions/creating-actions/publishing-actions-in-github-marketplace

Composite CI

If your CI is a composite from other GitHub CI, this tutorial is pretty good for you : https://docs.github.com/en/actions/creating-actions/creating-a-composite-action

Metadata

Don't forget to add metadata to your CI : https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions description:, icon: and color:

  • Related