forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (46 loc) · 1.35 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
name: "Publish Images & Deploy"
on:
release:
types: [published]
jobs:
build_and_push_images:
uses: ./.github/workflows/build-images.yml
with:
push: true
version: ${{ github.event.release.tag_name }}
secrets: inherit
deploy_release:
name: deploy to https://otel-demo.eu-west-1.aws.dash0-demo.com/
needs:
- build_and_push_images
runs-on: ubuntu-latest
# do not run multiple deployment jobs concurrently
concurrency: deploy
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: deploy release
uses: ./.github/actions/deploy-demo
with:
token: ${{ secrets.REPOSITORY_FULL_ACCESS_GITHUB_TOKEN }}
containerImageVersion: ${{ github.event.release.tag_name }}
update-release-in-env-file:
name: update .env file
needs:
- deploy_release
runs-on: ubuntu-latest
concurrency: update-env-file
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: update .env file
uses: ./.github/actions/update-env-file
with:
containerImageVersion: ${{ github.event.release.tag_name }}
token: ${{ secrets.REPOSITORY_FULL_ACCESS_GITHUB_TOKEN }}