File tree 3 files changed +20
-0
lines changed
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,8 @@ jobs:
174
174
push : ${{ inputs.push }}
175
175
tags : |
176
176
${{ env.DOCKERHUB_REPO }}:${{ inputs.version }}-${{matrix.file_tag.tag_suffix }}
177
+ ${{ env.DOCKERHUB_REPO }}:latest-${{matrix.file_tag.tag_suffix }}
177
178
${{ env.GHCR_REPO }}:${{ inputs.version }}-${{ matrix.file_tag.tag_suffix }}
179
+ ${{ env.GHCR_REPO }}:latest-${{ matrix.file_tag.tag_suffix }}
178
180
cache-from : type=gha
179
181
cache-to : type=gha
Original file line number Diff line number Diff line change
1
+ # Copyright The OpenTelemetry Authors
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ name : Nightly Release
4
+
5
+ on :
6
+ schedule :
7
+ # Runs at 00:00 UTC every day
8
+ - cron : ' 0 0 * * *'
9
+
10
+ jobs :
11
+ build_and_push_images :
12
+ uses : ./.github/workflows/build-images.yml
13
+ with :
14
+ push : true
15
+ version : nightly-${{ github.run_id }}
16
+ secrets : inherit
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ the release.
11
11
([ #1396 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1396 ) )
12
12
* [ chore] fix Make targets for restart and redeploy
13
13
([ #1397 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1397 ) )
14
+ * [ chore] add nightly releases
15
+ ([ #1398 ] ( https://github.com/open-telemetry/opentelemetry-demo/pull/1398 ) )
14
16
15
17
## 1.8.0
16
18
You can’t perform that action at this time.
0 commit comments