-
-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow removal for old releases #47
Comments
I have same problem. jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Delete
uses: ame-yu/action-delete-latest-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: $ {{ github.repository }}
- name: Release
uses: softprops/action-gh-release@v1
with:
name: type-your-release-name
tag_name: tag-here https://github.com/ame-yu/action-delete-latest-release/tree/v1 |
@softprops What do you think about this feature? I would love to have an overwrite option! |
For me it would also be good to have an overwrite feature |
me too |
I would like this too. +1 We are currently using the same tag for releases and as a workaround, we need to delete the tags before it gets push again. |
I would like behavior similar to release drafter where on every main commit I can have a draft release added that updates with the latest release notes, and when I publish the release it triggers my github action to deploy. Release drafter doesn't let me specify my own release notes however which is why I came here. As a workaround I am deleting the release prior to publishing. |
from the error in the description it seems this is more related to assets than the release itself. upserting assets is now the default which should fix this issue |
Hi! I am looking to setup nightly releases for rust-analyzer, and for that I want to publish a github release every night under the same tag. IE, I want the tag itself to move. Looks like at the moment actions-gh-release silently fails in this case:
Failing by default is probably the right behavior, but it would be cool if the action had an
overwrite: boolean
flag to control this behaviorThe text was updated successfully, but these errors were encountered: