I would suggest you make a .love or .exe version you upload, so people can play it easily. You can follow these steps:
Build your game to a .exe file
Source: https://github.com/LazerLars/inLove2d
Make .exe file
https://love2d.org/wiki/Game_Distribution
- Add love.exe to your repo
- Zip all files your project
- Rename filename.zip to -> .love
- Open dir in cmd and run command:
4.1) copy /b love.exe+yourGameFileName.love theNameOfYourExeFileForYourGame.exe
OR if cmd dont work directly with that command try in powershell, that often does the trick then
x) Or open powershell and run command:
x) cmd /c "copy /b love.exe+yourGameFileName.love theNameOfYourExeFileForYourGame.exe"