-
Notifications
You must be signed in to change notification settings - Fork 89
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
The windows installer cannot be created for versions wit pre-release or build numbers #52
Comments
@NiklasEi Do you know how to avoid this issue? I tried to build |
Yeah, this issue is bigger than I knew when I opened it. For now, I think you will have to remove the windows installer from the workflow. If the latest release is green, you could use the small diff from 6fd0f16 to turn it off. |
I'm still really confused as to why things like "v0.1.0" work in Foxtrot but not here :/ |
FWIW, I think its just the diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 89b4e0a..6a35df2 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -3,11 +3,11 @@ name: release-flow
on:
push:
tags:
- - "v[0-9]+.[0-9]+.[0-9]+*"
+ - "[0-9]+.[0-9]+.[0-9]+*"
workflow_dispatch:
inputs:
version:
- description: 'Version - in the form of v1.2.3'
+ description: 'Version - in the form of 1.2.3'
required: true
type: string
|
E.g.
Edit: for some reason, this currently also happens with "normal" version strings like
v0.1.0
. As a workaround, please apply 6fd0f16 to disable the windows installer.The text was updated successfully, but these errors were encountered: