@@ -190,6 +190,7 @@ func (action *AttestationInit) Run(ctx context.Context, opts *AttestationInitRun
190190 policiesAllowedHostnames []string
191191 // Timestamp Authority URL for new attestations
192192 timestampAuthorityURL , signingCAName string
193+ uiDashboardUrl string
193194 )
194195
195196 // Init in the control plane if needed including the runner context
@@ -220,6 +221,7 @@ func (action *AttestationInit) Run(ctx context.Context, opts *AttestationInitRun
220221 signingOpts := result .GetSigningOptions ()
221222 timestampAuthorityURL = signingOpts .GetTimestampAuthorityUrl ()
222223 signingCAName = signingOpts .GetSigningCa ()
224+ uiDashboardUrl = result .GetUiDashboardUrl ()
223225
224226 if v := workflowMeta .Version ; v != nil && workflowRun .GetVersion () != nil {
225227 v .Prerelease = workflowRun .GetVersion ().GetPrerelease ()
@@ -277,9 +279,10 @@ func (action *AttestationInit) Run(ctx context.Context, opts *AttestationInitRun
277279 TimestampAuthorityURL : timestampAuthorityURL ,
278280 SigningCAName : signingCAName ,
279281 },
280- Auth : authInfo ,
281- CASBackend : casBackendInfo ,
282- Logger : & action .Logger ,
282+ Auth : authInfo ,
283+ CASBackend : casBackendInfo ,
284+ Logger : & action .Logger ,
285+ UiDashboardUrl : uiDashboardUrl ,
283286 }
284287
285288 if err := action .c .Init (ctx , initOpts ); err != nil {
0 commit comments