forked from open-telemetry/opentelemetry-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
112 lines (104 loc) · 5.16 KB
/
prepare-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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Automation - Prepare Release
on:
workflow_dispatch:
# Determine the version number that will be assigned to the release. During the beta phase, we increment
# the minor version number and set the patch number to 0.
inputs:
candidate-stable:
description: Release candidate version (stable, like 1.3.0). Don't include a leading `v`.
current-stable:
required: true
description: Current version (stable, like 1.2.0). Don't include a leading `v`.
candidate-beta:
description: Release candidate version (beta, like 0.96.0). Don't include `v`.
current-beta:
required: true
description: Current version (beta, like 0.95.1). Don't include `v`.
jobs:
#validate-version format
# validate-versions:
# runs-on: ubuntu-latest
# steps:
# - name: Validate version format
# run: |
# validate_beta_version() {
# local regex_pattern_beta='^[0-9]+\.[0-9]+\.[0-9]+$'
# if [[ ! "$1" =~ $regex_pattern_beta ]]; then
# echo "Invalid $2 version format. For beta, it can be 0.1.0 or higher"
# exit 1
# fi
# }
# validate_stable_version() {
# local regex_pattern_stable='^[1-9][0-9]*\.[0-9]+\.[0-9]+$'
# if [[ ! "$1" =~ $regex_pattern_stable ]]; then
# echo "Invalid stable version format for $2. Major version must be greater than 1."
# exit 1
# fi
# }
# validate_beta_version "${{ inputs.candidate-beta }}" "candidate-beta"
# validate_beta_version "${{ inputs.current-beta }}" "current-beta"
# validate_stable_version "${{ inputs.candidate-stable }}" "candidate-stable"
# validate_stable_version "${{ inputs.current-stable }}" "current-stable"
# shell: bash
# Releasing opentelemetry-collector
prepare-release:
# needs:
# - validate-versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
# Make sure that there are no open issues with release:blocker label in Core. The release has to be delayed until they are resolved.
# - name: Check blockers in core
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# REPO: open-telemetry/opentelemetry-collector
# run: ./.github/workflows/scripts/release-check-blockers.sh
# # Make sure that there are no open issues with release:blocker label in Contrib. The release has to be delayed until they are resolved.
# - name: Check blockers in contrib
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# REPO: open-telemetry/opentelemetry-collector-contrib
# run: ./.github/workflows/scripts/release-check-blockers.sh
# # Make sure the current main branch build successfully passes (Core).
# - name: Check build status in core
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# REPO: open-telemetry/opentelemetry-collector
# run: ./.github/workflows/scripts/release-check-build-status.sh
# # Make sure the current main branch build successfully passes (Contrib).
# - name: Check build status in contrib
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# REPO: open-telemetry/opentelemetry-collector-contrib
# run: ./.github/workflows/scripts/release-check-build-status.sh
- name: Setup Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ~1.21.5
# Prepare Core for release.
# - Update CHANGELOG.md file, this is done via chloggen
# - Run make prepare-release PREVIOUS_VERSION=1.0.0 RELEASE_CANDIDATE=1.1.0 MODSET=stable
# - Run make prepare-release PREVIOUS_VERSION=0.52.0 RELEASE_CANDIDATE=0.53.0 MODSET=beta
- name: Prepare release for core
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: jackgopack4/opentelemetry-collector
CANDIDATE_BETA: ${{ inputs.candidate-beta }}
CANDIDATE_STABLE: ${{ inputs.candidate-stable }}
CURRENT_BETA: ${{ inputs.current-beta }}
CURRENT_STABLE: ${{ inputs.current-stable }}
run: ./.github/workflows/scripts/release-prepare-release.sh
# To keep track of the progress, it might be helpful to create a tracking issue similar to #6067. You are responsible
# for all of the steps under the "Performed by collector release manager" heading. Once the issue is created, you can
# create the individual ones by hovering them and clicking the "Convert to issue" button on the right hand side.
# - name: Create issue for tracking release
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# CANDIDATE_BETA: ${{ inputs.candidate-beta }}
# CANDIDATE_STABLE: ${{ inputs.candidate-stable }}
# CURRENT_BETA: ${{ inputs.current-beta }}
# CURRENT_STABLE: ${{ inputs.current-stable }}
# REPO: open-telemetry/opentelemetry-collector
# run: ./.github/workflows/scripts/release-create-tracking-issue.sh