Compare commits
2 Commits
0fbd7641c0
...
27a058a3ce
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27a058a3ce | ||
|
|
0d4310184e |
@@ -29,7 +29,7 @@ A `### Breaking` section is used in addition to Keep a Changelog's standard sect
|
||||
- `decorate-pr` now reads Unreleased changelog content through the `vociferate` Go CLI instead of maintaining separate shell parsing logic in the composite action.
|
||||
- `publish` now extracts tagged release notes through the `vociferate` Go CLI instead of duplicating changelog section parsing in shell.
|
||||
- Composite actions now share a centralized `run-vociferate` orchestration flow, with binary-versus-source execution delegated through shared composite actions and single-use runtime/download logic folded back into `run-vociferate.binary`.
|
||||
- `run-vociferate/binary` and `run-vociferate/code` are now nested under `run-vociferate/` so callers reference them as `./run-vociferate/binary` and `./run-vociferate/code`.
|
||||
- `run-vociferate` now contains both binary and source execution flows directly in a single action implementation, removing nested local action wrappers for better runner compatibility.
|
||||
|
||||
### Removed
|
||||
|
||||
@@ -41,7 +41,7 @@ A `### Breaking` section is used in addition to Keep a Changelog's standard sect
|
||||
- Restored explicit gosec caching by storing a pinned `v2.22.4` binary under `${{ runner.temp }}/gosec-bin` with `actions/cache@v4`, so CI keeps fast security scans while still using the Go 1.26 toolchain from `setup-go`.
|
||||
- Replaced `securego/gosec` composite action with a direct `go install github.com/securego/gosec/v2/cmd/gosec@v2.22.4 && gosec ./...` run step so gosec uses the Go 1.26 toolchain installed by `setup-go` rather than the action's bundled Go 1.24 binary which ignores `GOTOOLCHAIN=auto`.
|
||||
- Fixed nested local composite-action references to use repository-local `./run-vociferate` paths so strict runners do not misparse parent-directory (`../`) action references as malformed remote coordinates.
|
||||
- Fixed `run-vociferate` nested action calls to use explicit repo-root paths (`./run-vociferate/binary` and `./run-vociferate/code`) because strict runners resolve local action paths from repository root rather than from the current composite action directory.
|
||||
- Consolidated `run-vociferate` binary and source execution flows directly into the main `run-vociferate` action to avoid nested local-action path resolution issues on strict runners.
|
||||
|
||||
## [1.0.2] - 2026-03-21
|
||||
|
||||
|
||||
@@ -63,35 +63,198 @@ runs:
|
||||
printf 'use_binary=false\n' >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
|
||||
- name: Resolve binary metadata
|
||||
id: resolve-binary
|
||||
if: steps.resolve-runtime.outputs.use_binary == 'true'
|
||||
shell: bash
|
||||
env:
|
||||
ACTION_REF: ${{ github.action_ref }}
|
||||
ACTION_REPOSITORY: ${{ github.action_repository }}
|
||||
CACHE_TOKEN: ${{ env.VOCIFERATE_CACHE_TOKEN }}
|
||||
SERVER_URL: ${{ github.server_url }}
|
||||
RUNNER_ARCH: ${{ runner.arch }}
|
||||
RUNNER_TEMP: ${{ runner.temp }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
if [[ "$ACTION_REF" != v* ]]; then
|
||||
echo "run-vociferate binary path requires github.action_ref to be a release tag" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case "$RUNNER_ARCH" in
|
||||
X64)
|
||||
arch="amd64"
|
||||
;;
|
||||
ARM64)
|
||||
arch="arm64"
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported runner architecture: $RUNNER_ARCH" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
release_tag="$ACTION_REF"
|
||||
normalized_version="${release_tag#v}"
|
||||
asset_name="vociferate_${normalized_version}_linux_${arch}"
|
||||
cache_dir="${RUNNER_TEMP}/vociferate/${release_tag}/linux-${arch}"
|
||||
binary_path="${cache_dir}/vociferate"
|
||||
asset_url="${SERVER_URL}/aether/vociferate/releases/download/${release_tag}/${asset_name}"
|
||||
|
||||
provided_cache_token="$(printf '%s' "${CACHE_TOKEN:-}" | sed 's/^[[:space:]]\+//; s/[[:space:]]\+$//')"
|
||||
if [[ -n "$provided_cache_token" ]]; then
|
||||
cache_token="$provided_cache_token"
|
||||
else
|
||||
cache_token="${ACTION_REPOSITORY:-aether/vociferate}-${release_tag}"
|
||||
fi
|
||||
|
||||
mkdir -p "$cache_dir"
|
||||
|
||||
printf 'cache_token=%s\n' "$cache_token" >> "$GITHUB_OUTPUT"
|
||||
printf 'cache_dir=%s\n' "$cache_dir" >> "$GITHUB_OUTPUT"
|
||||
printf 'binary_path=%s\n' "$binary_path" >> "$GITHUB_OUTPUT"
|
||||
printf 'asset_url=%s\n' "$asset_url" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Restore cached binary
|
||||
id: cache-vociferate
|
||||
if: steps.resolve-runtime.outputs.use_binary == 'true'
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.resolve-binary.outputs.cache_dir }}
|
||||
key: vociferate-${{ steps.resolve-binary.outputs.cache_token }}-linux-${{ runner.arch }}
|
||||
|
||||
- name: Download binary
|
||||
if: steps.resolve-runtime.outputs.use_binary == 'true' && steps.cache-vociferate.outputs.cache-hit != 'true'
|
||||
shell: bash
|
||||
env:
|
||||
TOKEN: ${{ github.token }}
|
||||
ASSET_URL: ${{ steps.resolve-binary.outputs.asset_url }}
|
||||
BINARY_PATH: ${{ steps.resolve-binary.outputs.binary_path }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
curl --fail --location \
|
||||
-H "Authorization: token ${TOKEN}" \
|
||||
-o "$BINARY_PATH" \
|
||||
"$ASSET_URL"
|
||||
chmod +x "$BINARY_PATH"
|
||||
|
||||
- name: Run binary
|
||||
id: run-binary
|
||||
if: steps.resolve-runtime.outputs.use_binary == 'true'
|
||||
uses: ./run-vociferate/binary
|
||||
with:
|
||||
root: ${{ inputs.root }}
|
||||
version-file: ${{ inputs.version-file }}
|
||||
version-pattern: ${{ inputs.version-pattern }}
|
||||
changelog: ${{ inputs.changelog }}
|
||||
version: ${{ inputs.version }}
|
||||
date: ${{ inputs.date }}
|
||||
recommend: ${{ inputs.recommend }}
|
||||
print-unreleased: ${{ inputs.print-unreleased }}
|
||||
print-release-notes: ${{ inputs.print-release-notes }}
|
||||
shell: bash
|
||||
env:
|
||||
VOCIFERATE_BIN: ${{ steps.resolve-binary.outputs.binary_path }}
|
||||
ROOT: ${{ inputs.root }}
|
||||
VERSION_FILE: ${{ inputs.version-file }}
|
||||
VERSION_PATTERN: ${{ inputs.version-pattern }}
|
||||
CHANGELOG: ${{ inputs.changelog }}
|
||||
VERSION: ${{ inputs.version }}
|
||||
DATE: ${{ inputs.date }}
|
||||
RECOMMEND: ${{ inputs.recommend }}
|
||||
PRINT_UNRELEASED: ${{ inputs.print-unreleased }}
|
||||
PRINT_RELEASE_NOTES: ${{ inputs.print-release-notes }}
|
||||
VOCIFERATE_REPOSITORY_URL: ${{ vars.VOCIFERATE_REPOSITORY_URL }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
command=("$VOCIFERATE_BIN" --root "$ROOT")
|
||||
if [[ -n "$VERSION_FILE" ]]; then
|
||||
command+=(--version-file "$VERSION_FILE")
|
||||
fi
|
||||
if [[ -n "$VERSION_PATTERN" ]]; then
|
||||
command+=(--version-pattern "$VERSION_PATTERN")
|
||||
fi
|
||||
if [[ -n "$CHANGELOG" ]]; then
|
||||
command+=(--changelog "$CHANGELOG")
|
||||
fi
|
||||
if [[ -n "$VERSION" ]]; then
|
||||
command+=(--version "$VERSION")
|
||||
fi
|
||||
if [[ -n "$DATE" ]]; then
|
||||
command+=(--date "$DATE")
|
||||
fi
|
||||
if [[ "$RECOMMEND" == 'true' ]]; then
|
||||
command+=(--recommend)
|
||||
fi
|
||||
if [[ "$PRINT_UNRELEASED" == 'true' ]]; then
|
||||
command+=(--print-unreleased)
|
||||
fi
|
||||
if [[ "$PRINT_RELEASE_NOTES" == 'true' ]]; then
|
||||
command+=(--print-release-notes)
|
||||
fi
|
||||
|
||||
stdout_file="$(mktemp)"
|
||||
trap 'rm -f "$stdout_file"' EXIT
|
||||
"${command[@]}" > "$stdout_file"
|
||||
|
||||
delimiter="EOF_STDOUT"
|
||||
printf 'stdout<<%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
cat "$stdout_file" >> "$GITHUB_OUTPUT"
|
||||
printf '%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Run source
|
||||
id: run-code
|
||||
if: steps.resolve-runtime.outputs.use_binary != 'true'
|
||||
uses: ./run-vociferate/code
|
||||
with:
|
||||
root: ${{ inputs.root }}
|
||||
version-file: ${{ inputs.version-file }}
|
||||
version-pattern: ${{ inputs.version-pattern }}
|
||||
changelog: ${{ inputs.changelog }}
|
||||
version: ${{ inputs.version }}
|
||||
date: ${{ inputs.date }}
|
||||
recommend: ${{ inputs.recommend }}
|
||||
print-unreleased: ${{ inputs.print-unreleased }}
|
||||
print-release-notes: ${{ inputs.print-release-notes }}
|
||||
shell: bash
|
||||
env:
|
||||
ROOT: ${{ inputs.root }}
|
||||
VERSION_FILE: ${{ inputs.version-file }}
|
||||
VERSION_PATTERN: ${{ inputs.version-pattern }}
|
||||
CHANGELOG: ${{ inputs.changelog }}
|
||||
VERSION: ${{ inputs.version }}
|
||||
DATE: ${{ inputs.date }}
|
||||
RECOMMEND: ${{ inputs.recommend }}
|
||||
PRINT_UNRELEASED: ${{ inputs.print-unreleased }}
|
||||
PRINT_RELEASE_NOTES: ${{ inputs.print-release-notes }}
|
||||
VOCIFERATE_REPOSITORY_URL: ${{ vars.VOCIFERATE_REPOSITORY_URL }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
source_root="$GITHUB_ACTION_PATH"
|
||||
while [[ ! -f "$source_root/go.mod" ]] && [[ "$source_root" != "/" ]]; do
|
||||
source_root="$(realpath "$source_root/..")"
|
||||
done
|
||||
if [[ ! -f "$source_root/go.mod" ]]; then
|
||||
echo "Could not locate Go module root from $GITHUB_ACTION_PATH" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
command=(go run ./cmd/vociferate --root "$ROOT")
|
||||
if [[ -n "$VERSION_FILE" ]]; then
|
||||
command+=(--version-file "$VERSION_FILE")
|
||||
fi
|
||||
if [[ -n "$VERSION_PATTERN" ]]; then
|
||||
command+=(--version-pattern "$VERSION_PATTERN")
|
||||
fi
|
||||
if [[ -n "$CHANGELOG" ]]; then
|
||||
command+=(--changelog "$CHANGELOG")
|
||||
fi
|
||||
if [[ -n "$VERSION" ]]; then
|
||||
command+=(--version "$VERSION")
|
||||
fi
|
||||
if [[ -n "$DATE" ]]; then
|
||||
command+=(--date "$DATE")
|
||||
fi
|
||||
if [[ "$RECOMMEND" == 'true' ]]; then
|
||||
command+=(--recommend)
|
||||
fi
|
||||
if [[ "$PRINT_UNRELEASED" == 'true' ]]; then
|
||||
command+=(--print-unreleased)
|
||||
fi
|
||||
if [[ "$PRINT_RELEASE_NOTES" == 'true' ]]; then
|
||||
command+=(--print-release-notes)
|
||||
fi
|
||||
|
||||
stdout_file="$(mktemp)"
|
||||
trap 'rm -f "$stdout_file"' EXIT
|
||||
(cd "$source_root" && "${command[@]}") > "$stdout_file"
|
||||
|
||||
delimiter="EOF_STDOUT"
|
||||
printf 'stdout<<%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
cat "$stdout_file" >> "$GITHUB_OUTPUT"
|
||||
printf '%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Finalize stdout
|
||||
id: finalize
|
||||
|
||||
@@ -1,176 +0,0 @@
|
||||
name: vociferate/run-vociferate-binary
|
||||
description: Execute vociferate through a released binary.
|
||||
|
||||
inputs:
|
||||
root:
|
||||
description: Repository root to pass to vociferate.
|
||||
required: true
|
||||
version-file:
|
||||
description: Optional version file path.
|
||||
required: false
|
||||
default: ''
|
||||
version-pattern:
|
||||
description: Optional version pattern.
|
||||
required: false
|
||||
default: ''
|
||||
changelog:
|
||||
description: Optional changelog path.
|
||||
required: false
|
||||
default: ''
|
||||
version:
|
||||
description: Optional version argument.
|
||||
required: false
|
||||
default: ''
|
||||
date:
|
||||
description: Optional date argument.
|
||||
required: false
|
||||
default: ''
|
||||
recommend:
|
||||
description: Whether to run vociferate with --recommend.
|
||||
required: false
|
||||
default: 'false'
|
||||
print-unreleased:
|
||||
description: Whether to print the Unreleased body.
|
||||
required: false
|
||||
default: 'false'
|
||||
print-release-notes:
|
||||
description: Whether to print the release notes section for version.
|
||||
required: false
|
||||
default: 'false'
|
||||
|
||||
outputs:
|
||||
stdout:
|
||||
description: Captured stdout from the vociferate invocation.
|
||||
value: ${{ steps.run.outputs.stdout }}
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Resolve binary metadata
|
||||
id: resolve-binary
|
||||
shell: bash
|
||||
env:
|
||||
ACTION_REF: ${{ github.action_ref }}
|
||||
ACTION_REPOSITORY: ${{ github.action_repository }}
|
||||
CACHE_TOKEN: ${{ env.VOCIFERATE_CACHE_TOKEN }}
|
||||
SERVER_URL: ${{ github.server_url }}
|
||||
RUNNER_ARCH: ${{ runner.arch }}
|
||||
RUNNER_TEMP: ${{ runner.temp }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
if [[ "$ACTION_REF" != v* ]]; then
|
||||
echo "run-vociferate.binary requires github.action_ref to be a release tag" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case "$RUNNER_ARCH" in
|
||||
X64)
|
||||
arch="amd64"
|
||||
;;
|
||||
ARM64)
|
||||
arch="arm64"
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported runner architecture: $RUNNER_ARCH" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
release_tag="$ACTION_REF"
|
||||
normalized_version="${release_tag#v}"
|
||||
asset_name="vociferate_${normalized_version}_linux_${arch}"
|
||||
cache_dir="${RUNNER_TEMP}/vociferate/${release_tag}/linux-${arch}"
|
||||
binary_path="${cache_dir}/vociferate"
|
||||
asset_url="${SERVER_URL}/aether/vociferate/releases/download/${release_tag}/${asset_name}"
|
||||
|
||||
provided_cache_token="$(printf '%s' "${CACHE_TOKEN:-}" | sed 's/^[[:space:]]\+//; s/[[:space:]]\+$//')"
|
||||
if [[ -n "$provided_cache_token" ]]; then
|
||||
cache_token="$provided_cache_token"
|
||||
else
|
||||
cache_token="${ACTION_REPOSITORY:-aether/vociferate}-${release_tag}"
|
||||
fi
|
||||
|
||||
mkdir -p "$cache_dir"
|
||||
|
||||
printf 'cache_token=%s\n' "$cache_token" >> "$GITHUB_OUTPUT"
|
||||
printf 'cache_dir=%s\n' "$cache_dir" >> "$GITHUB_OUTPUT"
|
||||
printf 'binary_path=%s\n' "$binary_path" >> "$GITHUB_OUTPUT"
|
||||
printf 'asset_url=%s\n' "$asset_url" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Restore cached binary
|
||||
id: cache-vociferate
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.resolve-binary.outputs.cache_dir }}
|
||||
key: vociferate-${{ steps.resolve-binary.outputs.cache_token }}-linux-${{ runner.arch }}
|
||||
|
||||
- name: Download binary
|
||||
if: steps.cache-vociferate.outputs.cache-hit != 'true'
|
||||
shell: bash
|
||||
env:
|
||||
TOKEN: ${{ github.token }}
|
||||
ASSET_URL: ${{ steps.resolve-binary.outputs.asset_url }}
|
||||
BINARY_PATH: ${{ steps.resolve-binary.outputs.binary_path }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
curl --fail --location \
|
||||
-H "Authorization: token ${TOKEN}" \
|
||||
-o "$BINARY_PATH" \
|
||||
"$ASSET_URL"
|
||||
chmod +x "$BINARY_PATH"
|
||||
|
||||
- name: Run binary
|
||||
id: run
|
||||
shell: bash
|
||||
env:
|
||||
VOCIFERATE_BIN: ${{ steps.resolve-binary.outputs.binary_path }}
|
||||
ROOT: ${{ inputs.root }}
|
||||
VERSION_FILE: ${{ inputs.version-file }}
|
||||
VERSION_PATTERN: ${{ inputs.version-pattern }}
|
||||
CHANGELOG: ${{ inputs.changelog }}
|
||||
VERSION: ${{ inputs.version }}
|
||||
DATE: ${{ inputs.date }}
|
||||
RECOMMEND: ${{ inputs.recommend }}
|
||||
PRINT_UNRELEASED: ${{ inputs.print-unreleased }}
|
||||
PRINT_RELEASE_NOTES: ${{ inputs.print-release-notes }}
|
||||
VOCIFERATE_REPOSITORY_URL: ${{ vars.VOCIFERATE_REPOSITORY_URL }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
command=("$VOCIFERATE_BIN" --root "$ROOT")
|
||||
|
||||
if [[ -n "$VERSION_FILE" ]]; then
|
||||
command+=(--version-file "$VERSION_FILE")
|
||||
fi
|
||||
if [[ -n "$VERSION_PATTERN" ]]; then
|
||||
command+=(--version-pattern "$VERSION_PATTERN")
|
||||
fi
|
||||
if [[ -n "$CHANGELOG" ]]; then
|
||||
command+=(--changelog "$CHANGELOG")
|
||||
fi
|
||||
if [[ -n "$VERSION" ]]; then
|
||||
command+=(--version "$VERSION")
|
||||
fi
|
||||
if [[ -n "$DATE" ]]; then
|
||||
command+=(--date "$DATE")
|
||||
fi
|
||||
if [[ "$RECOMMEND" == 'true' ]]; then
|
||||
command+=(--recommend)
|
||||
fi
|
||||
if [[ "$PRINT_UNRELEASED" == 'true' ]]; then
|
||||
command+=(--print-unreleased)
|
||||
fi
|
||||
if [[ "$PRINT_RELEASE_NOTES" == 'true' ]]; then
|
||||
command+=(--print-release-notes)
|
||||
fi
|
||||
|
||||
stdout_file="$(mktemp)"
|
||||
trap 'rm -f "$stdout_file"' EXIT
|
||||
"${command[@]}" > "$stdout_file"
|
||||
|
||||
delimiter="EOF_STDOUT"
|
||||
printf 'stdout<<%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
cat "$stdout_file" >> "$GITHUB_OUTPUT"
|
||||
printf '%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
@@ -1,125 +0,0 @@
|
||||
name: vociferate/run-vociferate-code
|
||||
description: Execute vociferate from the checked-out Go source.
|
||||
|
||||
inputs:
|
||||
root:
|
||||
description: Repository root to pass to vociferate.
|
||||
required: true
|
||||
version-file:
|
||||
description: Optional version file path.
|
||||
required: false
|
||||
default: ''
|
||||
version-pattern:
|
||||
description: Optional version pattern.
|
||||
required: false
|
||||
default: ''
|
||||
changelog:
|
||||
description: Optional changelog path.
|
||||
required: false
|
||||
default: ''
|
||||
version:
|
||||
description: Optional version argument.
|
||||
required: false
|
||||
default: ''
|
||||
date:
|
||||
description: Optional date argument.
|
||||
required: false
|
||||
default: ''
|
||||
recommend:
|
||||
description: Whether to run vociferate with --recommend.
|
||||
required: false
|
||||
default: 'false'
|
||||
print-unreleased:
|
||||
description: Whether to print the Unreleased body.
|
||||
required: false
|
||||
default: 'false'
|
||||
print-release-notes:
|
||||
description: Whether to print the release notes section for version.
|
||||
required: false
|
||||
default: 'false'
|
||||
|
||||
outputs:
|
||||
stdout:
|
||||
description: Captured stdout from the vociferate invocation.
|
||||
value: ${{ steps.run.outputs.stdout }}
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Resolve source root
|
||||
id: resolve-source
|
||||
shell: bash
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
source_root="$GITHUB_ACTION_PATH"
|
||||
while [[ ! -f "$source_root/go.mod" ]] && [[ "$source_root" != "/" ]]; do
|
||||
source_root="$(realpath "$source_root/..")"
|
||||
done
|
||||
if [[ ! -f "$source_root/go.mod" ]]; then
|
||||
echo "Could not locate Go module root from $GITHUB_ACTION_PATH" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
printf 'source_root=%s\n' "$source_root" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: '1.26.1'
|
||||
cache: true
|
||||
cache-dependency-path: ${{ steps.resolve-source.outputs.source_root }}/go.sum
|
||||
|
||||
- name: Run source
|
||||
id: run
|
||||
shell: bash
|
||||
working-directory: ${{ steps.resolve-source.outputs.source_root }}
|
||||
env:
|
||||
ROOT: ${{ inputs.root }}
|
||||
VERSION_FILE: ${{ inputs.version-file }}
|
||||
VERSION_PATTERN: ${{ inputs.version-pattern }}
|
||||
CHANGELOG: ${{ inputs.changelog }}
|
||||
VERSION: ${{ inputs.version }}
|
||||
DATE: ${{ inputs.date }}
|
||||
RECOMMEND: ${{ inputs.recommend }}
|
||||
PRINT_UNRELEASED: ${{ inputs.print-unreleased }}
|
||||
PRINT_RELEASE_NOTES: ${{ inputs.print-release-notes }}
|
||||
VOCIFERATE_REPOSITORY_URL: ${{ vars.VOCIFERATE_REPOSITORY_URL }}
|
||||
run: |
|
||||
set -euo pipefail
|
||||
|
||||
command=(go run ./cmd/vociferate --root "$ROOT")
|
||||
|
||||
if [[ -n "$VERSION_FILE" ]]; then
|
||||
command+=(--version-file "$VERSION_FILE")
|
||||
fi
|
||||
if [[ -n "$VERSION_PATTERN" ]]; then
|
||||
command+=(--version-pattern "$VERSION_PATTERN")
|
||||
fi
|
||||
if [[ -n "$CHANGELOG" ]]; then
|
||||
command+=(--changelog "$CHANGELOG")
|
||||
fi
|
||||
if [[ -n "$VERSION" ]]; then
|
||||
command+=(--version "$VERSION")
|
||||
fi
|
||||
if [[ -n "$DATE" ]]; then
|
||||
command+=(--date "$DATE")
|
||||
fi
|
||||
if [[ "$RECOMMEND" == 'true' ]]; then
|
||||
command+=(--recommend)
|
||||
fi
|
||||
if [[ "$PRINT_UNRELEASED" == 'true' ]]; then
|
||||
command+=(--print-unreleased)
|
||||
fi
|
||||
if [[ "$PRINT_RELEASE_NOTES" == 'true' ]]; then
|
||||
command+=(--print-release-notes)
|
||||
fi
|
||||
|
||||
stdout_file="$(mktemp)"
|
||||
trap 'rm -f "$stdout_file"' EXIT
|
||||
"${command[@]}" > "$stdout_file"
|
||||
|
||||
delimiter="EOF_STDOUT"
|
||||
printf 'stdout<<%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
cat "$stdout_file" >> "$GITHUB_OUTPUT"
|
||||
printf '%s\n' "$delimiter" >> "$GITHUB_OUTPUT"
|
||||
Reference in New Issue
Block a user