Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonlabelle/setup-ssis-devops-tools
A GitHub action that Installs the latest standalone SQL Server Integration Service (SSIS) devops tools.
https://github.com/jonlabelle/setup-ssis-devops-tools
actions sql-server ssis tools
Last synced: about 1 month ago
JSON representation
A GitHub action that Installs the latest standalone SQL Server Integration Service (SSIS) devops tools.
- Host: GitHub
- URL: https://github.com/jonlabelle/setup-ssis-devops-tools
- Owner: jonlabelle
- License: mit
- Created: 2023-11-18T15:12:21.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-08-29T18:13:25.000Z (3 months ago)
- Last Synced: 2024-08-29T20:17:56.257Z (3 months ago)
- Topics: actions, sql-server, ssis, tools
- Language: PowerShell
- Homepage:
- Size: 43.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Setup SSIS DevOps Tools
[![test](https://github.com/jonlabelle/setup-ssis-devops-tools/actions/workflows/test.yml/badge.svg)](https://github.com/jonlabelle/setup-ssis-devops-tools/actions/workflows/test.yml)
[![latest release](https://img.shields.io/github/v/tag/jonlabelle/setup-ssis-devops-tools.svg?label=version&sort=semver)](https://github.com/jonlabelle/setup-ssis-devops-tools/releases)> A GitHub action that installs the latest standalone SQL Server Integration
> Service (SSIS) [devops tools](https://learn.microsoft.com/en-us/sql/integration-services/devops/ssis-devops-standalone).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](https://learn.microsoft.com/en-us/sql/integration-services/devops/ssis-devops-standalone#ssisbuildexe): build SSIS projects in project deployment model or package deployment model.
- [SSISDeploy.exe](https://learn.microsoft.com/en-us/sql/integration-services/devops/ssis-devops-standalone#ssisdeployexe): deploy ISPAC files to SSIS catalog, or DTSX files and their dependencies to file system.## Usage
> [!IMPORTANT]
> This action supports **Windows** runners only.```yaml
- 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](https://github.com/jonlabelle/setup-ssis-devops-tools/blob/main/.github/workflows/test.yml) for example usage.
## License
[MIT](LICENSE)