mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
24d348f804
* Split go files * Modify publishartifacts.go * Split main * FIXME: Temp add GCSCopy to gcloud/storage * Fix lint * Exported flags * Update starlark - make drone * Further backend lint fixes * Add fallback_test.go * Fix go imports order * make drone * Remove GCSCopy from static assets * Remove GCSCopy from storybook * Fix lint * Remove GCSCopy * Remove success logline * drone yaml cleanup * Add artifacts-editions flag * Fix starlark * Add default sting slice in artifacts packages command
14 lines
350 B
Go
14 lines
350 B
Go
package main
|
|
|
|
type publishConfig struct {
|
|
tag string
|
|
srcBucket string
|
|
destBucket string
|
|
enterprise2DestBucket string
|
|
enterprise2SecurityPrefix string
|
|
staticAssetsBucket string
|
|
staticAssetEditions []string
|
|
storybookBucket string
|
|
security bool
|
|
}
|