chore(go): keep changelog filename compatibility

This commit is contained in:
Micheal Wilkinson
2026-03-21 11:24:24 +00:00
parent ef554dde2d
commit 5ecbad8f27
2 changed files with 21 additions and 0 deletions

View File

@@ -16,6 +16,13 @@ jobs:
with:
fetch-depth: 0
- name: Provide lowercase changelog compatibility
run: |
set -euo pipefail
if [[ -f CHANGELOG.md && ! -e changelog.md ]]; then
ln -s CHANGELOG.md changelog.md
fi
- name: Vociferate prepare
uses: aether/vociferate/prepare@v1.0.1
@@ -28,5 +35,12 @@ jobs:
with:
fetch-depth: 0
- name: Provide lowercase changelog compatibility
run: |
set -euo pipefail
if [[ -f CHANGELOG.md && ! -e changelog.md ]]; then
ln -s CHANGELOG.md changelog.md
fi
- name: Vociferate publish
uses: aether/vociferate/publish@v1.0.1

View File

@@ -82,5 +82,12 @@ jobs:
with:
fetch-depth: 0
- name: Provide lowercase changelog compatibility
run: |
set -euo pipefail
if [[ -f CHANGELOG.md && ! -e changelog.md ]]; then
ln -s CHANGELOG.md changelog.md
fi
- name: Vociferate publish
uses: aether/vociferate/publish@v1.0.1