Skip to content

Commit

Permalink
Fix source path for jenkins file (opensearch-project#59)
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
Signed-off-by: fepatrifork <[email protected]>
  • Loading branch information
gaiksaya authored and fepatrifork committed May 21, 2024
1 parent becefce commit b5130a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jenkins/release.jenkinsFile
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ standardReleasePipelineWithGenericTrigger(
publishRelease: true) {
publishToArtifactsProdBucket(
assumedRoleName: 'sql-odbc-upload-role',
source: "windows32-installer/OpenSearch-SQL-ODBC-Driver-32-bit-${tag}-Windows.msi",
source: "${WORKSPACE}/windows32-installer/OpenSearch-SQL-ODBC-Driver-32-bit-${tag}-Windows.msi",
destination: "opensearch-clients/odbc/opensearch-sql-odbc-driver-32-bit-${tag}-Windows.msi",
signingPlatform: 'windows',
sigOverwrite: true
)
publishToArtifactsProdBucket(
assumedRoleName: 'sql-odbc-upload-role',
source: "windows64-installer/OpenSearch-SQL-ODBC-Driver-64-bit-${tag}-Windows.msi",
source: "${WORKSPACE}/windows64-installer/OpenSearch-SQL-ODBC-Driver-64-bit-${tag}-Windows.msi",
destination: "opensearch-clients/odbc/opensearch-sql-odbc-driver-64-bit-${tag}-Windows.msi",
signingPlatform: 'windows',
sigOverwrite: true
Expand Down

0 comments on commit b5130a1

Please sign in to comment.