Update all copyright notices in shell scripts from 2025 to 2026. ## Changes - **Igor Pecovnik**: 2013-2025 → 2013-2026 (129 files) - **Ricardo Pardini**: 2023-2025 → 2023-2026, 2020-2025 → 2020-2026 (5 files) ## Additional Improvements Also updated the backtitle in `lib/functions/configuration/interactive.sh`: - Changed title from "Armbian building script" to "Armbian Linux build framework" - Removed docs link for cleaner display - Uses dynamic year calculation with separate declaration (fixes shellcheck SC2155)
28 lines
747 B
Bash
28 lines
747 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2013-2026 Igor Pecovnik, igor@armbian.com
|
|
#
|
|
# This file is a part of the Armbian Build Framework
|
|
# https://github.com/armbian/build/
|
|
|
|
function github_actions_add_output() {
|
|
# if CI is not GitHub Actions, do nothing
|
|
if [[ "${GITHUB_ACTIONS}" != "true" ]]; then
|
|
display_alert "Not running in GitHub Actions, not adding output" "'${*}'" "debug"
|
|
return 0
|
|
fi
|
|
|
|
if [[ ! -f "${GITHUB_OUTPUT}" ]]; then
|
|
exit_with_error "GITHUB_OUTPUT file not found '${GITHUB_OUTPUT}'"
|
|
fi
|
|
|
|
local output_name="$1"
|
|
shift
|
|
local output_value="$*"
|
|
|
|
echo "${output_name}=${output_value}" >> "${GITHUB_OUTPUT}"
|
|
display_alert "Added GHA output" "'${output_name}'='${output_value}'" "ext"
|
|
}
|