automatic releases: tag being used instead of defined title
See original GitHub issueDespite setting the title
property under with
, the action still seems to prefer simply bumping the pushed tag to a release instead.
Usage:
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download Build Results
uses: actions/download-artifact@v2
with:
name: libs
path: buildfiles
- name: Create Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
title: "Release ${{ github.event.release.tag_name }}"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
CHANGELOG.txt
LICENSE.txt
buildfiles/*
Example repository: https://github.com/robotgryphon/mc-mod/blob/1.16.1/.github/workflows/gradle.yml
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Managing releases in a repository - GitHub Docs
Creating a release · On GitHub.com, navigate to the main page of the repository. · To the right of the list of files,...
Read more >Why popular repositories use release version as a "Release ...
It turns out a "title" like a "tag" is just some text you give to your "release" and has nothing to do with...
Read more >Automatic tagging of releases - git - Stack Overflow
Now I have each release identified by build number, but they increment even if there are no changes in the repo. My idea...
Read more >Releases - GitLab Docs
In GitLab, a release enables you to create a snapshot of your project for your users, including installation packages and release notes.
Read more >How to Release Code With Github - YouTube
Any project you build is designed to be released at some point. While that may seem obvious, there are some specific steps required...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ldeluigi I’m sorry this project doesn’t live up to your standards. Your comment is kind of rude and a bit insulting to someone who does all this on their free time. That is not welcome here.
In addition to that, I couldn’t fix it (at that time) without creating myself a copy of this action (not a good idea) so I had to live with the bug (and this didn’t make me very happy)