48
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 02 Jun 2025
48 points (80.0% liked)
Open Source
37679 readers
18 users here now
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
founded 5 years ago
MODERATORS
Are you using Pipelines in either github or another upstream source management platform? I don't know if they have a free build plan or not, but you can have an entire pipeline that just spits out an executable for one or more platforms every time you commit to your main branch, depending on how you have compilation set up (you can have it use both a Linux and a Windows VM for different steps in the pipeline too). It can even handle publishing them to a website if youre handy with bash and/or powershell scripts (or python or JS or whatever you can call from the pipeline).
I use the Azure DevOps version at work and its amazingly useful, but very confusing to learn at first.