Codeberg/Community
62
385
Fork
You've already forked Community
12

Error 500 on creating new Releases #2792

Open
opened 2026年06月23日 20:51:40 +02:00 by Adwaith-Rajesh · 8 comments

Comment

I'm getting 500 (Internal Server Error) when trying to create new release using the Web UI for the past 1-2 hours.

### Comment I'm getting 500 (Internal Server Error) when trying to create new release using the Web UI for the past 1-2 hours.

+1 on this.
I'm having this issue after I removed the created tag

Reproduce

  1. Create a new release: v0.1.0, v0.2.0, v0.3.0, v0.4.0, v0.5.0, v0.6.0, v0.7.0
  2. Delete releases: v0.4.0, v0.5.0, v0.6.0, v0.7.0
  3. Delete tags: v0.4.0, v0.5.0, v0.6.0, v0.7.0
  4. Create a new release v0.4.0

Workaround

There is a workaround but not ideal, if I try to create v0.4.1 then it works, but if I created 0.4.0 it returns 500 despite it's already removed before.

+1 on this. I'm having this issue after I removed the created tag ### Reproduce 1. Create a new release: v0.1.0, v0.2.0, v0.3.0, v0.4.0, v0.5.0, v0.6.0, v0.7.0 2. Delete releases: v0.4.0, v0.5.0, v0.6.0, v0.7.0 3. Delete tags: v0.4.0, v0.5.0, v0.6.0, v0.7.0 4. Create a new release v0.4.0 ### Workaround There is a workaround but not ideal, if I try to create v0.4.1 then it works, but if I created 0.4.0 it returns 500 despite it's already removed before.

Yeah.
Initially I created a pre tag called v0.1.0-pre which was successful.
But when everything was finalized I could not create the tag v0.1.0.
I was able to make v0.1.1

Yeah. Initially I created a pre tag called `v0.1.0-pre` which was successful. But when everything was finalized I could not create the tag `v0.1.0`. I was able to make `v0.1.1`

Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue.

Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue.

@mahlzahn wrote in #2792 (comment):

Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue.

Here is the repo that I had issues with https://codeberg.org/Adwaith-Rajesh/libzmime

@mahlzahn wrote in https://codeberg.org/Codeberg/Community/issues/2792#issuecomment-18100400: > Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue. Here is the repo that I had issues with [https://codeberg.org/Adwaith-Rajesh/libzmime](https://codeberg.org/Adwaith-Rajesh/libzmime)

@mahlzahn wrote in #2792 (comment):

Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue.

Hi, here is my repo https://codeberg.org/ky64/local-text-rpg-ui
Let me know if you need more info to help you. Thanks!

@mahlzahn wrote in https://codeberg.org/Codeberg/Community/issues/2792#issuecomment-18100400: > Sounds like some issue with the underlying git repositories (and I didn’t manage to replicate on Forgejo’s test instance). Please, let us know the concerned repositories, such that Codeberg admins can investigate the issue. Hi, here is my repo https://codeberg.org/ky64/local-text-rpg-ui Let me know if you need more info to help you. Thanks!

Found this upstream issue: forgejo/forgejo#13201

Seems they managed to delete the tag using the API, if you want to try it yourself, you may with

curl -X 'DELETE' \
 'https://codeberg.org/api/v1/repos/myowner/myrepo/tags/v0.0.1' \
 -H 'accept: application/json' \
 -H 'Authorization: mytokenxxx'

See https://codeberg.org/api/swagger#/repository/repoDeleteTag and https://forgejo.org/docs/latest/user/api-usage/ for more details.

Found this upstream issue: https://codeberg.org/forgejo/forgejo/issues/13201 Seems they managed to delete the tag using the API, if you want to try it yourself, you may with ``` curl -X 'DELETE' \ 'https://codeberg.org/api/v1/repos/myowner/myrepo/tags/v0.0.1' \ -H 'accept: application/json' \ -H 'Authorization: mytokenxxx' ``` See https://codeberg.org/api/swagger#/repository/repoDeleteTag and https://forgejo.org/docs/latest/user/api-usage/ for more details.

@mahlzahn wrote in #2792 (comment):

Found this upstream issue: forgejo/forgejo#13201

Seems they managed to delete the tag using the API, if you want to try it yourself, you may with

curl -X 'DELETE' \
 'https://codeberg.org/api/v1/repos/myowner/myrepo/tags/v0.0.1' \
 -H 'accept: application/json' \
 -H 'Authorization: mytokenxxx'

See https://codeberg.org/api/swagger#/repository/repoDeleteTag and https://forgejo.org/docs/latest/user/api-usage/ for more details.

Hi, thanks for responding.
I have tested this but got

curl -X 'DELETE' \
'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/tags/v0.4.0' \
-H 'accept: application/json' \
-H 'Authorization: token ****'
{"message":"The target couldn't be found.","url":"https://codeberg.org/api/swagger","errors":[]}

I also checked from the swagger the list of the tags and releases, those seems already removed. I still can't create a new release unless I change the number.

Tags:

curl -X 'GET' \
 'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/tags' \
 -H 'accept: application/json'

Releases:

curl -X 'GET' \
 'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/releases' \
 -H 'accept: application/json'
@mahlzahn wrote in https://codeberg.org/Codeberg/Community/issues/2792#issuecomment-18128060: > Found this upstream issue: forgejo/forgejo#13201 > > Seems they managed to delete the tag using the API, if you want to try it yourself, you may with > > ```text > curl -X 'DELETE' \ > 'https://codeberg.org/api/v1/repos/myowner/myrepo/tags/v0.0.1' \ > -H 'accept: application/json' \ > -H 'Authorization: mytokenxxx' > ``` > > See https://codeberg.org/api/swagger#/repository/repoDeleteTag and https://forgejo.org/docs/latest/user/api-usage/ for more details. Hi, thanks for responding. I have tested this but got ```sh curl -X 'DELETE' \ 'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/tags/v0.4.0' \ -H 'accept: application/json' \ -H 'Authorization: token ****' {"message":"The target couldn't be found.","url":"https://codeberg.org/api/swagger","errors":[]} ``` I also checked from the swagger the list of the tags and releases, those seems already removed. I still can't create a new release unless I change the number. Tags: ``` curl -X 'GET' \ 'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/tags' \ -H 'accept: application/json' ``` Releases: ``` curl -X 'GET' \ 'https://codeberg.org/api/v1/repos/ky64/local-text-rpg-ui/releases' \ -H 'accept: application/json' ```

Thanks for trying out. Seems, we need a Codeberg admin to intervene then.

Thanks for trying out. Seems, we need a Codeberg admin to intervene then.
Sign in to join this conversation.
No Branch/Tag specified
main
No results found.
Labels
Clear labels
accessibility
Reduces accessibility and is thus a "bug" for certain user groups on Codeberg.
bug
Something is not working the way it should. Does not concern outages.
bug
infrastructure
Errors evidently caused by infrastructure malfunctions or outages
Codeberg
This issue involves Codeberg's downstream modifications and settings and/or Codeberg's structures.
contributions welcome
Please join the discussion and consider contributing a PR!
docs
No bug, but an improvement to the docs or UI description will help
duplicate
This issue or pull request already exists
enhancement
New feature
infrastructure
Involves changes to the server setups, use `bug/infrastructure` for infrastructure-related user errors.
legal
An issue directly involving legal compliance
licence / ToS
involving questions about the ToS, especially licencing compliance
please chill
we are volunteers
Please consider editing your posts and remember that there is a human on the other side. We get that you are frustrated, but it's harder for us to help you this way.
public relations
Things related to Codeberg's external communication
question
More information is needed
question
user support
This issue contains a clearly stated problem. However, it is not clear whether we have to fix anything on Codeberg's end, but we're helping them fix it and/or find the cause.
s/Forgejo
Related to Forgejo. Please also check Forgejo's issue tracker.
s/Forgejo/migration
Migration related issues in Forgejo
s/Pages
Issues related to the Codeberg Pages feature
s/Weblate
Issue is related to the Weblate instance at https://translate.codeberg.org
s/Woodpecker
Woodpecker CI related issue
security
involves improvements to the sites security
service
Add a new service to the Codeberg ecosystem (instead of implementing into Forgejo)
upstream
An open issue or pull request to an upstream repository to fix this issue (partially or completely) exists (i.e. Forgejo, Weblate, etc.)
wontfix
Codeberg's current set of contributors are not planning to spend time on delegating this issue.
Milestone
Clear milestone
No items
No milestone
Projects
Clear projects
No items
No project
Assignees
Clear assignees
No assignees
3 participants
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
Codeberg/Community#2792
Reference in a new issue
Codeberg/Community
No description provided.
Delete branch "%!s()"

Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?