-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Brandt <[email protected]>
- Loading branch information
1 parent
1468b01
commit e8370ca
Showing
1 changed file
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,6 +62,7 @@ jobs: | |
# Export to Github output and Github summary | ||
echo "BUILD_TAG=$build_tag" >> ${GITHUB_OUTPUT} | ||
echo "Build Tag to Release (Step Process Input): ${BUILD_TAG}" >> ${GITHUB_STEP_SUMMARY} | ||
- name: Print Tag To Create a Release From | ||
run: | | ||
|
@@ -85,6 +86,9 @@ jobs: | |
echo "Checked out branch: $(git symbolic-ref --short HEAD)" | ||
fi | ||
# TODO: Configure | ||
# git config --global user.email "[email protected]" | ||
# git config --global user.name "Your Name" | ||
- name: Import GPG Key | ||
uses: step-security/ghaction-import-gpg@6c8fe4d0126a59d57c21f87c9ae5dd3451fa3cca # v6.1.0 | ||
with: | ||
|
@@ -148,7 +152,7 @@ jobs: | |
- name: Apply Tag with Calculated Next Version | ||
run: | | ||
echo "Applying computed version tag" | ||
git tag -a v${{ steps.next_version.outputs.next_release }} -m "v${{ steps.next_version.outputs.next_release }}" | ||
git tag --annotate v${{ steps.next_version.outputs.next_release }} --message "v${{ steps.next_version.outputs.next_release }}" | ||
echo "Applied tag v${{ steps.next_version.outputs.next_release }}" | ||
printf "Version Tag Applied: v${{ steps.next_version.outputs.next_release }}" >> ${GITHUB_STEP_SUMMARY} | ||
|