Reputation: 359
I am currently using github actions to build a package nightly. This produces a .deb file as an artifact. Now I would like to automatically generate a github page that has the layout of an apt repository. I.e., so that I can add my github page to my /etc/apt/sources.list.d/myrepo.list and then easily install the nightly built artifact.
Is this possible? How could I do this?
Upvotes: 1
Views: 272
Reputation: 498
I suggest to checking https://github.com/marketplace/actions/github-pages-apt-repo - "This action will setup and manage a simple APT repo on your github pages".
Upvotes: 1