Comments
Sort by recent activity
The way I've solved this is to check in a tools directory with all the exe's I need, then call them from scripts called from GitHub Actions. Now that containers exist for all the tools, one could use docker commands from Actions. This isn't quite as clean as the action commands you can grab from GitHub's marketplace, but it isn't that difficult to build your own if you really want it. Derive from Redgate's container, add an action.yml and README.md, and if you want to go full-circle, publish to the marketplace. See also https://docs.github.com/en/actions/creating-actions/creating-a-docker-container-action and https://hub.docker.com/u/redgate / comments
The way I've solved this is to check in a tools directory with all the exe's I need, then call them from scripts called from GitHub Actions. Now that containers exist for all the tools, one could ...