A GitHub action that installs the latest standalone SQL Server Integration Service (SSIS) devops tools.
Standalone SSIS DevOps Tools provide a set of executables to do SSIS CI/CD tasks without the dependency on the installation of Visual Studio or SSIS runtime. The executables provided are:
- SSISBuild.exe: build SSIS projects in project deployment model or package deployment model.
- SSISDeploy.exe: deploy ISPAC files to SSIS catalog, or DTSX files and their dependencies to file system.
Important
This action supports Windows runners only.
- name: Setup SSIS devops tools
uses: jonlabelle/setup-ssis-devops-tools@v1
After running this step, SSISBuild.exe and SSISDeploy.exe are available for use from your path.
See the tests for example usage.