-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update to latest release action (#11808)
- Loading branch information
1 parent
09aa0f8
commit 65b3ec4
Showing
20 changed files
with
2,470 additions
and
1,067 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"version": 1, | ||
"dependencies": [ | ||
{ | ||
"source": { | ||
"git": { | ||
"remote": "https://github.com/grafana/loki-release.git", | ||
"subdir": "workflows" | ||
} | ||
}, | ||
"version": "release-1.10.x" | ||
} | ||
], | ||
"legacyImports": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"version": 1, | ||
"dependencies": [ | ||
{ | ||
"source": { | ||
"git": { | ||
"remote": "https://github.com/grafana/loki-release.git", | ||
"subdir": "workflows" | ||
} | ||
}, | ||
"version": "c005223f58b83f288b655dde5bcfeff7490c7aa5", | ||
"sum": "5K+r6Bsb8JMR1ytQjSObjvHFpH7SJBi5D4ysSwvC4/g=" | ||
} | ||
], | ||
"legacyImports": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
local lokiRelease = import 'workflows/main.jsonnet'; | ||
local build = lokiRelease.build; | ||
{ | ||
'patch-release-pr.yml': std.manifestYamlDoc( | ||
lokiRelease.releasePRWorkflow( | ||
imageJobs={ | ||
loki: build.image('loki', 'cmd/loki'), | ||
fluentd: build.image('fluentd', 'clients/cmd/fluentd', platform=['linux/amd64']), | ||
'fluent-bit': build.image('fluent-bit', 'clients/cmd/fluent-bit', platform=['linux/amd64']), | ||
logstash: build.image('logstash', 'clients/cmd/logstash', platform=['linux/amd64']), | ||
logcli: build.image('logcli', 'cmd/logcli'), | ||
'loki-canary': build.image('loki-canary', 'cmd/loki-canary'), | ||
'loki-canary-boringcrypto': build.image('loki-canary-boringcrypto', 'cmd/loki-canary-boringcrypto'), | ||
'loki-operator': build.image('loki-operator', 'operator', context='release/operator', platform=['linux/amd64']), | ||
promtail: build.image('promtail', 'clients/cmd/promtail'), | ||
querytee: build.image('querytee', 'cmd/querytee', platform=['linux/amd64']), | ||
}, | ||
branches=['release-[0-9]+.[0-9]+.x'], | ||
checkTemplate='grafana/loki-release/.github/workflows/[email protected]', | ||
imagePrefix='grafana', | ||
releaseRepo='grafana/loki', | ||
skipArm=false, | ||
skipValidation=false, | ||
versioningStrategy='always-bump-patch', | ||
), false, false | ||
), | ||
'minor-release-pr.yml': std.manifestYamlDoc( | ||
lokiRelease.releasePRWorkflow( | ||
imageJobs={ | ||
loki: build.image('loki', 'cmd/loki'), | ||
fluentd: build.image('fluentd', 'clients/cmd/fluentd', platform=['linux/amd64']), | ||
'fluent-bit': build.image('fluent-bit', 'clients/cmd/fluent-bit', platform=['linux/amd64']), | ||
logstash: build.image('logstash', 'clients/cmd/logstash', platform=['linux/amd64']), | ||
logcli: build.image('logcli', 'cmd/logcli'), | ||
'loki-canary': build.image('loki-canary', 'cmd/loki-canary'), | ||
'loki-canary-boringcrypto': build.image('loki-canary-boringcrypto', 'cmd/loki-canary-boringcrypto'), | ||
'loki-operator': build.image('loki-operator', 'operator', context='release/operator', platform=['linux/amd64']), | ||
promtail: build.image('promtail', 'clients/cmd/promtail'), | ||
querytee: build.image('querytee', 'cmd/querytee', platform=['linux/amd64']), | ||
}, | ||
branches=['k[0-9]+'], | ||
checkTemplate='grafana/loki-release/.github/workflows/[email protected]', | ||
imagePrefix='grafana', | ||
releaseRepo='grafana/loki', | ||
skipArm=false, | ||
skipValidation=false, | ||
versioningStrategy='always-bump-minor', | ||
), false, false | ||
), | ||
'release.yml': std.manifestYamlDoc( | ||
lokiRelease.releaseWorkflow( | ||
branches=['release-[0-9]+.[0-9]+.x', 'k[0-9]+'], | ||
getDockerCredsFromVault=true, | ||
imagePrefix='grafana', | ||
releaseRepo='grafana/loki', | ||
), false, false | ||
), | ||
} |
154 changes: 154 additions & 0 deletions
154
.github/vendor/github.com/grafana/loki-release/workflows/build.libsonnet
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
124 changes: 124 additions & 0 deletions
124
.github/vendor/github.com/grafana/loki-release/workflows/common.libsonnet
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.