Skip to content
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

build: get version from inputs not from the starting event #111

Merged
merged 1 commit into from
Apr 16, 2024

Conversation

ndr-brt
Copy link
Member

@ndr-brt ndr-brt commented Apr 15, 2024

What this PR changes/adds

According to the documentation, the github.event refers to the event that started the caller workflow, instead inputs refers to the actual parameters passed

Why it does that

Briefly state why the change was necessary.

Further notes

List other areas of code that have changed but are not necessarily linked to the main feature. This could be method
signature changes, package declarations, bugs that were encountered and were fixed inline, etc.

Linked Issue(s)

Closes # <-- insert Issue number if one exists

Please be sure to take a look at the contributing guidelines and our etiquette for pull requests.

@@ -16,8 +16,8 @@ jobs:
- uses: eclipse-edc/.github/.github/actions/setup-build@main

- name: Override version if input is set
if: "${{ github.event.inputs.version != '' }}"
run: sed -i "s/version=.*/version=${{ github.event.inputs.version }}/g" gradle.properties
if: "${{ inputs.version != '' }}"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how about:

Suggested change
if: "${{ inputs.version != '' }}"
if: "${{ inputs.version != '' || github.event.inputs.version != '' }}"

that way it'll fallback to the event's version input if the workflow input is not set

Copy link
Member Author

@ndr-brt ndr-brt Apr 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's not needed, this flow can only start from a workflow_call, so the inputs.version is the real source of trouth.
Checking the original event would add additional complexity because then we'll need to chose which one will be used in the sed command.

@ndr-brt ndr-brt merged commit 8abe0fb into main Apr 16, 2024
6 checks passed
@ndr-brt ndr-brt deleted the fix-publish-openapi-autodoc branch April 16, 2024 07:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants