Skip to content

Commit

Permalink
Updating Flyway CLI check to accept variable, instead of just inline …
Browse files Browse the repository at this point in the history
…boolean (red-gate#29)

* Changing ${{ secrets.FLYWAY_CLI_INSTALL_CHECK }} to variable rather than plaintext

* Changing ${{ secrets.FLYWAY_CLI_INSTALL_CHECK }} to variable rather than plaintext

* Updating Build to use Azure SQL DB

* Reverting to localhost toml for build

* Changing AutoPilot references to Autopilot (#2)

Renamed AutoPilot references to Autopilot

---------

Co-authored-by: Huxley Kendell <[email protected]>
  • Loading branch information
csnhawkins and HuxleyKendell authored Jan 27, 2025
1 parent ab71928 commit a70ce05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/GitHub-Flyway-CICD-Pipeline_Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ env:
FIRST_UNDO_SCRIPT: "002" # This should match the first undo version in your project

# Optional - Validate Flyway CLI installation for ephemeral agents
FLYWAY_CLI_INSTALL_CHECK: "false" # Setting to false will skip the Flyway CLI check step
FLYWAY_CLI_INSTALL_CHECK: "${{ secrets.FLYWAY_CLI_INSTALL_CHECK }}" # Setting to false will skip the Flyway CLI check step
FLYWAY_VERSION: "Latest" # This outlines the version of Flyway CLI that will be downloaded if no Flyway CLI is detected on the target agent (Examples - '11.0.0' for specific version. Or 'Latest' for latest version)
FLYWAY_INSTALL_DIRECTORY: "" # The path on the agent machine where Flyway CLI will be installed

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/GitHub-Flyway-CICD-Pipeline_Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ env:
FIRST_UNDO_SCRIPT: "002" # This should match the first undo version in your project

# Optional: Validate Flyway CLI installation for ephemeral agents.
FLYWAY_CLI_INSTALL_CHECK: "false" # Setting to false will skip the Flyway CLI check step
FLYWAY_CLI_INSTALL_CHECK: "${{ secrets.FLYWAY_CLI_INSTALL_CHECK }}" # Setting to false will skip the Flyway CLI check step
FLYWAY_VERSION: "Latest" # This outlines the version of Flyway CLI that will be downloaded if no Flyway CLI is detected on the target agent (Examples - '11.0.0' for specific version. Or 'Latest' for latest version)
FLYWAY_INSTALL_DIRECTORY: "C:\\FlywayCLI\\" # The path on the agent machine where Flyway CLI will be installed

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Flyway AutoPilot allows you to trial an end-to-end database development and automated deployment process with next to no setup. With Flyway AutoPilot, you get:
Redgate Flyway Autopilot allows you to trial an end-to-end database development and automated deployment process with next to no setup. With Flyway Autopilot, you get:

1. A SQL script to create ready-to-use sample databases, with the ability to test additional objects and scenarios
2. A pre-configured Flyway project to get started quickly
Expand Down

0 comments on commit a70ce05

Please sign in to comment.