Is the tag created by Paul Hatch's semantic-version the same as a GitHub Release? #191713
Replies: 3 comments 3 replies
This comment was marked as low quality.
This comment was marked as low quality.
-
1. Git Tag (Created by the Action):The
2. GitHub Release:A GitHub Release is a GitHub-specific feature that sits "on top" of a Git Tag.
How to create a Release from the Tag?If you want to automatically turn the tag created by this action into a full GitHub Release, you should use an additional step in your workflow (like - name: Determine Version
id: semver
uses: paulfhatch/semantic-version@v5.4.0
with:
tag_prefix: "v"
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.semver.outputs.version_tag }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Actions Runner
Discussion Details
I have started learning how to use Paul Hatch's semantic-version (I'm working with version 5.4.0). From what I've been able to gather, a GitHub Release is a specialized Git Tag. The GitHub Release is done in the github.com web interface. Late last week I got my first instance of a GitHub Tag created using paulhatch/semantic-version@v5.4.0. I see that it is categorized as a tag, not a release. Does that really matter, or should I just think of what paulhatch/semantic-version@v5.4.0 generates as a release that looks like a tag?
Beta Was this translation helpful? Give feedback.
All reactions