You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create a GitHub action that will use Pynsist to generate an installer file for my project on my github repository. I wondered if anyone has a working example of a YAML script that can be executed using github actions to carry out the following:
Installs NSIS onto the GitHub runner machine (not sure if this should be done on GitHub Ubuntu or Windows).
Installs python 3.7.
Installs pynsist and the other python dependencies
Runs a python script which generates the installer.cfg file and then calls pynsist to execute the installer.cfg.
The text was updated successfully, but these errors were encountered:
I don't have an example handy, but I think all of that should be reasonably straightforward. You can install NSIS with apt on Ubuntu (see the FAQ) or with Chocolatey on Windows (as in the appveyor config).
I'll leave this open for other people to offer advice - please do post the details if you make it work.
You might also be interested in this test, which goes right through building an installer, installing it, and running the installed program. Obviously this is only meant for Windows CI:
I am trying to create a GitHub action that will use Pynsist to generate an installer file for my project on my github repository. I wondered if anyone has a working example of a YAML script that can be executed using github actions to carry out the following:
The text was updated successfully, but these errors were encountered: