Compare commits

..

1 Commits

Author SHA1 Message Date
Devansh Mathur f930c5c040 fix: [CI-22323]: Adding PLUGIN_ prefix for ACR vars. 2026-04-28 16:09:03 +05:30
5 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ platform:
steps:
- name: build
image: golang:1.25.10
image: golang:1.22.4
commands:
- go test ./...
- sh scripts/build.sh
@@ -178,7 +178,7 @@ pool:
steps:
- name: build
image: golang:1.25.10
image: golang:1.22.4
commands:
- go test ./...
- sh scripts/build.sh
+4 -4
View File
@@ -37,7 +37,7 @@ pipeline:
identifier: Build
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
@@ -322,7 +322,7 @@ pipeline:
identifier: Build_and_Test
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
@@ -618,7 +618,7 @@ pipeline:
identifier: build_binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
@@ -923,7 +923,7 @@ pipeline:
identifier: build_binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
@@ -35,7 +35,7 @@ pipeline:
identifier: Build
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
@@ -320,7 +320,7 @@ pipeline:
identifier: Build_and_Test
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.25.10
image: golang:1.25.7
shell: Sh
command: |-
go test ./...
+3 -3
View File
@@ -159,12 +159,12 @@ func main() {
cli.StringFlag{
Name: "client-secret",
Usage: "Azure client secret",
EnvVar: "CLIENT_SECRET",
EnvVar: "CLIENT_SECRET,PLUGIN_CLIENT_SECRET",
},
cli.StringFlag{
Name: "client-cert",
Usage: "Azure client certificate encoded in base64 format",
EnvVar: "CLIENT_CERTIFICATE",
EnvVar: "CLIENT_CERTIFICATE,PLUGIN_CLIENT_CERTIFICATE",
},
cli.StringFlag{
Name: "tenant-id",
@@ -174,7 +174,7 @@ func main() {
cli.StringFlag{
Name: "subscription-id",
Usage: "Azure Subscription Id",
EnvVar: "SUBSCRIPTION_ID",
EnvVar: "SUBSCRIPTION_ID,PLUGIN_SUBSCRIPTION_ID",
},
cli.StringFlag{
Name: "client-id",
+1 -1
View File
@@ -58,4 +58,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.25.10
go 1.25.7