From 47b5023439ccf7cab174d74b0d1fa104c15f480c Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Wed, 13 Nov 2024 09:36:25 +0000 Subject: [PATCH] [Actions] Updated .github/actions/build/action.yml --- .github/actions/build/action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index c8fc0cb6..d8004134 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -139,6 +139,15 @@ inputs: SQL_PASSWORD: description: 'Password for SQL_USER' required: false + REDGATE_EMAIL: + description: 'Redgate authentication email' + required: true + REDGATE_PAT: + description: 'Redgate authentication Personal Access Token' + required: true + SQLCOMPARE_VERSION: + description: 'Version of SQL Compare to use' + required: true runs: using: "composite" @@ -326,6 +335,9 @@ runs: BUILD_VERSION: ${{env.BUILD_VERSION}} BUILD_SQL: ${{steps.check_files.outputs.SQL_EXIST}} DB_FOLDER: ${{github.workspace}}/db + REDGATE_EMAIL: ${{inputs.REDGATE_EMAIL}} + REDGATE_PAT: ${{inputs.REDGATE_EMAIL}} + SQLCOMPARE_VERSION: ${{inputs.SQLCOMPARE_VERSION}} NUGET_PACK: ${{inputs.NUGET_PACK}} NUGET_FEED: ${{inputs.NUGET_FEED}} NUGET_SYMBOL_FEED: ${{inputs.NUGET_SYMBOL_FEED}} @@ -410,6 +422,9 @@ runs: SQL_USER: ${{inputs.SQL_USER}} SQL_PASSWORD: ${{inputs.SQL_PASSWORD}} DB_FOLDER: ${{github.workspace}}/db + REDGATE_EMAIL: ${{inputs.REDGATE_EMAIL}} + REDGATE_PAT: ${{inputs.REDGATE_PAT}} + SQLCOMPARE_VERSION: ${{inputs.SQLCOMPARE_VERSION}} - name: "Dotnet: Cloudformation Deploy" if: |-