Skip to content

Commit 637a143

Browse files
committed
adjust doc comments
1 parent 52bb40d commit 637a143

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/base-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set goreleaser last tag reference in case of non-nightly release
8080
id: prev-tag
8181
if: inputs.nightly != 'true'
82-
# find previous tag by filtering out nightly tags and choosing the
82+
# find previous tag by filtering out nightly tags and binary release (OCB, OpAMP) tags and then choosing the
8383
# second to last tag (last one is the current release)
8484
run: |
8585
prev_tag=$(git tag | grep -v "cmd" | grep -v "nightly" | sort -r --version-sort | head -n 2 | tail -n 1)

.github/workflows/release-builder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set goreleaser last tag reference in case of non-nightly release
2727
id: prev-tag
2828
if: ${{ !contains(github.ref, '-nightly') }}
29-
# find previous tag by filtering out nightly tags and choosing the
29+
# find previous tag by taking only OCB tags, filtering out nightly tags and then choosing the
3030
# second to last tag (last one is the current release)
3131
run: |
3232
prev_tag=$(git tag | grep "cmd/builder" | grep -v "nightly" | sort -r --version-sort | head -n 2 | tail -n 1)

.github/workflows/release-opampsupervisor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set goreleaser last tag reference in case of non-nightly release
2727
id: prev-tag
2828
if: ${{ !contains(github.ref, '-nightly') }}
29-
# find previous tag by filtering out nightly tags and choosing the
29+
# find previous tag by taking only OpAMP supervisor tags, filtering out nightly tags and then choosing the
3030
# second to last tag (last one is the current release)
3131
run: |
3232
prev_tag=$(git tag | grep "cmd/opampsupervisor" | grep -v "nightly" | sort -r --version-sort | head -n 2 | tail -n 1)

0 commit comments

Comments
 (0)