-
Notifications
You must be signed in to change notification settings - Fork 25
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 new release GH workflow #1860
Conversation
Watermelon AI SummaryAI Summary deactivated by a-zakir GitHub PRs
Antares_Simulator is an open repo and Watermelon will serve it for free. |
Please retry analysis of this Pull-Request directly on SonarCloud |
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.
Can you please add OL8 ?
.github/workflows/new_release.yml
Outdated
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.event.inputs.release_tag }} | ||
title: ${{ github.event.inputs.release_name }} | ||
run: | | ||
gh release create "$tag" \ | ||
--repo="$GITHUB_REPOSITORY" \ | ||
--title="$title" \ | ||
--generate-notes |
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.
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.event.inputs.release_tag }} | |
title: ${{ github.event.inputs.release_name }} | |
run: | | |
gh release create "$tag" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="$title" \ | |
--generate-notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ github.event.inputs.release_tag }} | |
title: ${{ github.event.inputs.release_name }} | |
tests: ${{ github.event.inputs.run-tests }} | |
run: | | |
gh release create "$tag" \ | |
--repo="$GITHUB_REPOSITORY" \ | |
--title="$title" \ | |
--notes="Run tests: $tests" |
The generated notes are garbage since our history is not linear. Also, we want to sort changes by type (new feature, bugfix, doc, code cleaning, etc.)
Almost good ! PDF doc is missing |
This reverts commit 3bcc2f8.
Co-authored-by: Florian Omnès <[email protected]>
gh release create "$tag" \ | ||
--repo="$GITHUB_REPOSITORY" \ | ||
--title="$title" | ||
--notes="Run tests: $tests" |
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.
You forgot to define $tests
above (section env
)
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.
Env variable not defined
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
No description provided.