Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git committed Jan 18, 2025
1 parent fbef7a9 commit 2e64a29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,14 @@ jobs:
ZIP_FILENAME='${{ steps.build.outputs.ZIP_FILENAME }}'
ZIP_VERSION='${{ steps.build.outputs.ZIP_VERSION }}'
ZIP_SHORT_COMMIT_ID='${{ steps.build.outputs.ZIP_SHORT_COMMIT_ID }}'
ZIP_BUILD_TYPE='${{ steps.build.outputs.ZIP_BUILD_TYPE }}'
ZIP_SHA256='${{ steps.build.outputs.ZIP_SHA256 }}'
ZIP_MD5='${{ steps.build.outputs.ZIP_MD5 }}'
# Displaying informations...
printf '%s\n' "::notice::Filename: ${ZIP_FILENAME:-Missing}"
printf '%s\n' "::notice::Version: ${ZIP_VERSION:-Missing}"
printf '%s\n' "::notice::Short commit ID: ${ZIP_SHORT_COMMIT_ID:-Missing}"
printf '%s\n' "::notice::Build type: ${ZIP_BUILD_TYPE:-Missing}"
printf '%s\n' "::notice::SHA-256: ${ZIP_SHA256:-Missing}"
printf '%s\n' "::notice::MD5: ${ZIP_MD5:-Missing}"
: "${ZIP_FOLDER:?}" || exit "${?}"
Expand Down
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ if test "${OPENSOURCE_ONLY:?}" != 'false'; then
printf 'ZIP_FILENAME=\n'
printf 'ZIP_VERSION=\n'
printf 'ZIP_SHORT_COMMIT_ID=%s\n' "${ZIP_SHORT_COMMIT_ID?}"
printf 'ZIP_BUILD_TYPE=%s\n' "${BUILD_TYPE?}"
printf 'ZIP_SHA256=\n'
printf 'ZIP_MD5=\n'
} >> "${GITHUB_OUTPUT?}"
Expand Down Expand Up @@ -316,6 +317,7 @@ if test "${GITHUB_JOB:-false}" != 'false'; then
printf 'ZIP_FILENAME=%s\n' "${ZIP_FILENAME?}"
printf 'ZIP_VERSION=%s\n' "${MODULE_VER?}"
printf 'ZIP_SHORT_COMMIT_ID=%s\n' "${ZIP_SHORT_COMMIT_ID?}"
printf 'ZIP_BUILD_TYPE=%s\n' "${BUILD_TYPE?}"
printf 'ZIP_SHA256=%s\n' "${ZIP_SHA256?}"
printf 'ZIP_MD5=%s\n' "${ZIP_MD5?}"
} >> "${GITHUB_OUTPUT?}"
Expand Down

0 comments on commit 2e64a29

Please sign in to comment.