Skip to content

Commit

Permalink
Merge branch 'micro5k:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ale5000-git authored Jan 20, 2025
2 parents 80aebdb + 85edaed commit 548c441
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/auto-release-from-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,28 @@ jobs:
run: |
### Building...
'${{ github.workspace }}/gradlew' clean buildOtaOSS
- name: "ZIP info"
run: |
# Retrieve informations...
ZIP_FOLDER='${{ steps.build.outputs.ZIP_FOLDER }}'
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 "${?}"
- name: "Create release"
uses: softprops/action-gh-release@v2
with:
body: "See the full [**changelog**](./CHANGELOG.rst)."
body: "See the complete [**changelog**](./CHANGELOG.rst)."
append_body: true
generate_release_notes: true
files: "${{ steps.build.outputs.ZIP_FOLDER }}/*.zip*"
Expand Down

0 comments on commit 548c441

Please sign in to comment.