Use GitHub as a Continuous Deployment Engine to Game Platforms using Electron and Cordova.
Also provides an example installable Progressive Web Application(PWA).
- Setup Template Repo
- Setup GitHub Actions to build Electron binaries
- store as a release
- Setup Deployment Actions
- Itch
- CloudFlare Pages
- Setup PWA
- Ensure overlay works
- Documentation/Examples
A developer commits a bunch of client files to the repo which triggers GitHub Actions that build and deploy their configured binaries to Itch/Steam/Where-ever
- [ ] Clone this Template Repository
- [ ] Click actions on your new repository
- [ ] Note it already building a release for you
- [ ] Commit your website's code in the `www` directory on GitHub, try out the drag n' drop features!
- [ ] ???
- [ ] Download the releases
- [ ] Add `SECRETS` to your github repository
- name: Deploy to itch
uses: josephbmanley/butler-publish-itchio-action@master
env:
BUTLER_CREDENTIALS: ${{ secrets.BUTLER_CREDENTIALS }}
CHANNEL: browser
ITCH_GAME: ${{ secrets.ITCH_GAME }}
ITCH_USER: ${{ secrets.ITCH_USER }}
PACKAGE: www
- [ ] ???
- [ ] Its released!