-
-
Notifications
You must be signed in to change notification settings - Fork 108
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
Fix release by tag #519
Fix release by tag #519
Conversation
password: ${{ secrets.SONATYPE_PASSWORD }} | ||
pgp_passphrase: ${{ secrets.PGP_PASSPHRASE }} | ||
pgp_secret: ${{ secrets.PGP_SECRET }} | ||
secrets: inherit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeeees, cooool! 🕺
@@ -4,14 +4,10 @@ on: | |||
push: | |||
branches: # Snapshots | |||
- main | |||
tags: ["*"] # Releases |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not 100% sure but I think double quotes may be seen as normal string? Only when using singlel quotes a string is escaped?
It seems the double quotes are not the problem. |
Only when |
There is the |
I remember the same problem in one of Akka repo, but forgot which one exactly 🤦♂️ |
Someone from Akka team already analysed this case, I'm sure. |
I saw that too, there was a comment from Enno I think, I will investigate. |
I found the problem!!! 🥳 😪 I think it's a bug in GitHub... I tried a lot in https://github.com/mkurz/release-drafter-test/ Actually the I think this is a bug in GitHub, because it should not use the permissions from the author of the draft, but the permissions from the user that clicks "publish" for the release. When I created a release draft myself (user mkurz), and then published a release via UI, it worked! the push tag event will be send and the release starts! See here for the 1.6.0-M6 tag: https://github.com/playframework/twirl/runs/6331248053?check_suite_focus=true I will report a bug to GitHub. Update: The release worked: https://repo1.maven.org/maven2/com/typesafe/play/twirl-api_3/ |
@octonato just tagged
1.6.0-M2
, however not artifacts got pushed to maven central.I think this is because of using double quotes...